@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #edf4ff, #dbeafe);
    min-height: 100vh;
    color: #1f2937;
}

.main {
    max-width: 1200px;
}

.page-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd, #1e40af);
    color: #ffffff;
    padding: 40px 20px;
}

.hero-section h1 {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
}

.hero-section p {
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.95;
}

.content-section {
    padding: 30px;
}

.section-heading h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: #111827;
}

.form-control {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid #ced4da;
    box-shadow: none;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.15);
}

.gender-group {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 46px;
}

.btn-custom {
    min-width: 150px;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
}

.table-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
}

.table thead th {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    vertical-align: middle;
    white-space: nowrap;
}

.table tbody td {
    vertical-align: middle;
    background: #ffffff;
}

.badge-status {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 0.85rem;
    font-weight: 700;
}

.queue-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-delete {
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 6px 14px;
}

.empty-state {
    text-align: center;
    color: #6b7280;
    padding: 22px !important;
    font-size: 0.95rem;
    background: #ffffff;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
    color: #4b5563;
    font-weight: 600;
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 20px;
    }

    .gender-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 8px;
    }
}
