/* Style personnalisé pour l'application de gestion des clients */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.required-label::after {
            content: " *";
            color: #dc3545;
        }
        .form-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.table th {
    border-top: none;
    font-weight: 600;
}

.btn {
    border-radius: 6px;
    font-weight: 500;
}

.alert {
    border: none;
    border-radius: 8px;
}

.badge {
    font-size: 0.8em;
    padding: 0.5em 0.75em;
}

.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-sm {
        margin-bottom: 5px;
    }
    
    .table td, .table th {
        padding: 0.5rem;
    }
}