/* style.css */
body {
    background-color: #f8f9fa !important;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.customer-card {
    transition: transform 0.2s;
    border-left: 5px solid #0d6efd;
}

.customer-card:hover {
    transform: translateY(-2px);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
}

.table th {
    font-size: 13px;
    text-transform: uppercase;
}

.table td {
    font-size: 14px;
}

/* মোবাইল ফোনের জন্য অতিরিক্ত ফিক্স */
@media (max-width: 576px) {
    .container {
        padding: 5px;
    }
    .card-body {
        padding: 10px;
    }
    h1, h4 {
        font-size: 1.2rem;
    }
}