/**
 * Washington Healthcare PLC - Patient Appointment Booking System
 * Brand Compliant Stylesheet - February 2025 Guidelines
 * Primary Font: Spectral (Google Fonts)
 */

/* =====================================================
   CSS Variables - WH Brand Colors
   ===================================================== */
:root {
    /* Primary Colors */
    --wh-primary-blue: #0A3161;
    --wh-red: #8A181A;
    --wh-green: #1C603B;
    --wh-gold: #B98E2E;
    --wh-light-blue: #1362A1;

    /* Neutral Colors */
    --wh-white: #FFFFFF;
    --wh-off-white: #F8F9FA;
    --wh-light-gray: #E9ECEF;
    --wh-medium-gray: #6C757D;
    --wh-dark-gray: #343A40;
    --wh-black: #212529;

    /* Semantic Colors */
    --wh-success: #1C603B;
    --wh-warning: #B98E2E;
    --wh-danger: #8A181A;
    --wh-info: #1362A1;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(10, 49, 97, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 49, 97, 0.12);
    --shadow-lg: 0 8px 24px rgba(10, 49, 97, 0.16);
    --shadow-xl: 0 12px 48px rgba(10, 49, 97, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
}

/* =====================================================
   Reset & Base Styles
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Spectral', Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--wh-dark-gray);
    background-color: var(--wh-off-white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral', Georgia, serif;
    font-weight: 700;
    color: var(--wh-primary-blue);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--wh-light-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--wh-primary-blue);
    text-decoration: underline;
}

/* =====================================================
   Layout Components
   ===================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 40px 0;
}

/* =====================================================
   Header Styles
   ===================================================== */
.site-header {
    background: linear-gradient(135deg, var(--wh-primary-blue) 0%, #061d3a 100%);
    color: var(--wh-white);
    padding: 20px 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wh-white);
    letter-spacing: 1px;
}

.logo-text .tagline {
    font-size: 0.85rem;
    color: var(--wh-gold);
    font-style: italic;
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav a {
    color: var(--wh-white);
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    background: linear-gradient(135deg, var(--wh-primary-blue) 0%, #0d4a8a 50%, var(--wh-light-blue) 100%);
    color: var(--wh-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--wh-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--wh-gold);
    margin-bottom: 30px;
}

/* =====================================================
   Cards & Panels
   ===================================================== */
.card {
    background: var(--wh-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin-bottom: 20px;
    transition: box-shadow var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header {
    border-bottom: 2px solid var(--wh-light-gray);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    color: var(--wh-primary-blue);
    margin-bottom: 5px;
}

.card-subtitle {
    color: var(--wh-medium-gray);
    font-size: 0.95rem;
}

/* =====================================================
   Form Styles
   ===================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--wh-primary-blue);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: ' *';
    color: var(--wh-red);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Spectral', serif;
    font-size: 1rem;
    color: var(--wh-dark-gray);
    background: var(--wh-white);
    border: 2px solid var(--wh-light-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--wh-light-blue);
    box-shadow: 0 0 0 3px rgba(19, 98, 161, 0.15);
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: var(--wh-red);
}

.form-control::placeholder {
    color: var(--wh-medium-gray);
    opacity: 0.7;
}

select.form-control {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%230A3161" d="M6 8L1 3h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--wh-medium-gray);
    margin-top: 5px;
}

.form-error {
    font-size: 0.85rem;
    color: var(--wh-red);
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Spectral', serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary {
    background: var(--wh-gold);
    color: var(--wh-primary-blue);
    border-color: var(--wh-gold);
}

.btn-primary:hover {
    background: #a67d28;
    border-color: #a67d28;
    color: var(--wh-white);
    box-shadow: 0 4px 15px rgba(185, 142, 46, 0.4);
}

.btn-secondary {
    background: var(--wh-primary-blue);
    color: var(--wh-white);
    border-color: var(--wh-primary-blue);
}

.btn-secondary:hover {
    background: #082548;
    border-color: #082548;
    box-shadow: 0 4px 15px rgba(10, 49, 97, 0.4);
}

.btn-success {
    background: var(--wh-green);
    color: var(--wh-white);
    border-color: var(--wh-green);
}

.btn-success:hover {
    background: #154d2e;
    box-shadow: 0 4px 15px rgba(28, 96, 59, 0.4);
}

.btn-danger {
    background: var(--wh-red);
    color: var(--wh-white);
    border-color: var(--wh-red);
}

.btn-danger:hover {
    background: #6e1214;
    box-shadow: 0 4px 15px rgba(138, 24, 26, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--wh-primary-blue);
    border-color: var(--wh-primary-blue);
}

.btn-outline:hover {
    background: var(--wh-primary-blue);
    color: var(--wh-white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* =====================================================
   Tables
   ===================================================== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wh-white);
}

.table th,
.table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--wh-light-gray);
}

.table th {
    background: var(--wh-primary-blue);
    color: var(--wh-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: background var(--transition-fast);
}

.table tbody tr:hover {
    background: rgba(19, 98, 161, 0.05);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* =====================================================
   Alerts & Messages
   ===================================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(28, 96, 59, 0.1);
    border-left: 4px solid var(--wh-green);
    color: var(--wh-green);
}

.alert-warning {
    background: rgba(185, 142, 46, 0.1);
    border-left: 4px solid var(--wh-gold);
    color: #8a6d1f;
}

.alert-danger {
    background: rgba(138, 24, 26, 0.1);
    border-left: 4px solid var(--wh-red);
    color: var(--wh-red);
}

.alert-info {
    background: rgba(19, 98, 161, 0.1);
    border-left: 4px solid var(--wh-light-blue);
    color: var(--wh-light-blue);
}

/* =====================================================
   Status Badges
   ===================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    color: var(--wh-white);
}

.badge-pending { background: var(--wh-gold); }
.badge-confirmed, .badge-paid { background: var(--wh-green); }
.badge-cancelled, .badge-failed { background: var(--wh-red); }
.badge-completed { background: var(--wh-primary-blue); }

/* =====================================================
   Doctor Cards
   ===================================================== */
.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.doctor-card {
    background: var(--wh-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 3px solid transparent;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.doctor-card.selected {
    border-color: var(--wh-gold);
    box-shadow: 0 0 0 3px rgba(185, 142, 46, 0.3);
}

.doctor-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--wh-light-gray), var(--wh-off-white));
}

.doctor-info {
    padding: 20px;
}

.doctor-name {
    font-size: 1.2rem;
    color: var(--wh-primary-blue);
    margin-bottom: 5px;
}

.doctor-specialty {
    color: var(--wh-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.doctor-schedule {
    font-size: 0.9rem;
    color: var(--wh-medium-gray);
}

.doctor-fee {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--wh-light-gray);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wh-green);
}

/* =====================================================
   Booking Steps
   ===================================================== */
.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 25%;
    right: 25%;
    height: 3px;
    background: var(--wh-light-gray);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 150px;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--wh-light-gray);
    color: var(--wh-medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: all var(--transition-normal);
}

.step.active .step-number {
    background: var(--wh-gold);
    color: var(--wh-primary-blue);
    box-shadow: 0 0 0 4px rgba(185, 142, 46, 0.3);
}

.step.completed .step-number {
    background: var(--wh-green);
    color: var(--wh-white);
}

.step-label {
    font-size: 0.85rem;
    color: var(--wh-medium-gray);
    text-align: center;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--wh-primary-blue);
    font-weight: 600;
}

/* =====================================================
   Time Slots Grid
   ===================================================== */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    background: var(--wh-off-white);
    border: 2px solid var(--wh-light-gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--wh-light-blue);
    background: rgba(19, 98, 161, 0.05);
}

.time-slot.selected {
    background: var(--wh-gold);
    border-color: var(--wh-gold);
    color: var(--wh-primary-blue);
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background: var(--wh-primary-blue);
    color: var(--wh-white);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--wh-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--wh-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   Success Page
   ===================================================== */
.success-container {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--wh-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.confirmation-details {
    background: var(--wh-off-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: left;
    margin-top: 30px;
}

.confirmation-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--wh-light-gray);
}

.confirmation-row:last-child {
    border-bottom: none;
}

.confirmation-label {
    color: var(--wh-medium-gray);
}

.confirmation-value {
    font-weight: 600;
    color: var(--wh-primary-blue);
}

/* =====================================================
   Admin Panel Styles
   ===================================================== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--wh-primary-blue);
    color: var(--wh-white);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wh-white);
}

.admin-sidebar-nav {
    padding: 20px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--wh-white);
    text-decoration: none;
}

.admin-nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--wh-gold);
    border-left-color: var(--wh-gold);
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    background: var(--wh-off-white);
}

.admin-header {
    background: var(--wh-white);
    padding: 20px 30px;
    border-bottom: 1px solid var(--wh-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-content {
    padding: 30px;
}

.admin-page-title {
    font-size: 1.8rem;
    color: var(--wh-primary-blue);
    margin-bottom: 5px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--wh-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.blue { background: rgba(19, 98, 161, 0.1); color: var(--wh-light-blue); }
.stat-icon.green { background: rgba(28, 96, 59, 0.1); color: var(--wh-green); }
.stat-icon.gold { background: rgba(185, 142, 46, 0.1); color: var(--wh-gold); }
.stat-icon.red { background: rgba(138, 24, 26, 0.1); color: var(--wh-red); }

.stat-details h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-details p {
    color: var(--wh-medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   Loading States
   ===================================================== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--wh-light-gray);
    border-top-color: var(--wh-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay .loading-spinner {
    width: 50px;
    height: 50px;
    border-width: 4px;
}

/* =====================================================
   Modal
   ===================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 49, 97, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--wh-white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal-backdrop.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--wh-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.3rem;
    color: var(--wh-primary-blue);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--wh-medium-gray);
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--wh-light-gray);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .booking-steps::before {
        display: none;
    }

    .booking-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .doctor-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
    }

    .table th,
    .table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .admin-sidebar {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
