/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

/* Bootstrap CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Custom theme */
:root {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    --primary: #4299e1;
    --secondary: #667eea;
    --success: #48bb78;
    --danger: #f56565;
    --warning: #ed8936;
    --info: #4299e1;
}

body {
    background-color: #FFBC0B;
    color: #000;
    font-family: 'Nunito', sans-serif;
}

.navbar {
    background-color: #FFBC0B !important;
}

.navbar-brand, .nav-link {
    color: #000000 !important;
}

.card {
    border-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid #000;
    font-weight: bold;
    padding: 0.75rem 1.25rem;
}

.btn-primary {
    background-color: #0062cc;
    border-color: #005cbf;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: scale(1.03);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: all 0.2s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: scale(1.03);
}

.btn-danger {
    transition: all 0.2s ease;
}

.btn-danger:hover {
    transform: scale(1.03);
}

.table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 188, 11, 0.05);
}

.badge {
    border-radius: 20px;
    padding: 0.4em 0.8em;
    font-weight: normal;
}

.badge.bg-info {
    background-color: #0d6efd !important;
    color: white !important;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 10px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.contact-manager-heading {
    color: #000;
    font-weight: 700;
    border-bottom: 3px solid #000;
    display: inline-block;
    padding-bottom: 5px;
}

.pagination {
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.alert {
    border-radius: 8px;
    border-left: 5px solid;
}

.alert-success {
    border-left-color: #28a745;
}

.alert-danger {
    border-left-color: #dc3545;
}

/* Add any custom styles below */
