:root {
    --bg-color: #12141c; /* Deep Anthracite background */
    --text-color: #ffffff; /* Pure White text */
    --text-muted: #9ca3af;
    --primary-color: #f59e0b; /* Gold */
    --primary-hover: #d97706;
    --surface-color: #1a1d26; /* Anthracite Surface Cards */
    --border-color: rgba(255, 255, 255, 0.08);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(circle at 15% 50%, rgba(245, 158, 11, 0.05), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.05), transparent 25%);
    pointer-events: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #0f1115;
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-center a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-right a {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-center a:hover, .nav-center a.active {
    color: var(--primary-color);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: var(--primary-color) !important;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000 !important;
}

.btn-dashboard {
    background: var(--primary-color);
    color: #000 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-dashboard:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Sections */
main {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-section {
    display: none;
    animation: fadeIn 0.4s ease forwards;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typography & Utils */
h1, h2, h3 {
    margin-bottom: 1rem;
}

.mt-4 { margin-top: 1.5rem; }

/* Hero */
.hero {
    text-align: center;
    margin: 4rem 0 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Modern Anthracite Cards */
.glass-panel {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Elegant gold accent line on top of each panel */
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-hover));
}

.glass-panel:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Forms */
.form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

input, select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input:focus, select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

button {
    cursor: pointer;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    width: auto;
}

.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }

/* Layouts */
.booking-container, .login-container {
    max-width: 520px;
    margin: 0 auto;
}

/* Date Quick Buttons */
.date-quick-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.date-quick-btn {
    flex: 1;
    min-width: 70px;
    padding: 0.55rem 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: auto;
}

.date-quick-btn:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.date-quick-btn.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Time Slots Grid */
.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.timeslot-btn {
    padding: 0.6rem 0.3rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: auto;
}

.timeslot-btn:hover:not(:disabled) {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.timeslot-btn.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.timeslot-btn.booked {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.2);
    color: rgba(239,68,68,0.5);
    cursor: not-allowed;
    text-decoration: line-through;
}

.timeslot-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .timeslots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.login-hint {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.single-card {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        margin: 2rem 0 2rem;
    }
    .hero h1 { font-size: 2.2rem; }
    .glass-panel { padding: 1.5rem; }
    .nav-links a { margin-left: 1rem; font-size: 0.9rem; }
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.data-table th, .data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
}

.badge {
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge.pending { background: rgba(245, 158, 11, 0.2); color: var(--warning); }
.badge.approved, .badge.completed { background: rgba(16, 185, 129, 0.2); color: var(--success); }
.badge.cancelled { background: rgba(239, 68, 68, 0.2); color: var(--danger); }

/* List */
.list-group {
    list-style: none;
    margin-top: 1rem;
}
.list-group li {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.list-group li:last-child {
    border-bottom: none;
}

/* Messages */
.message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    display: none;
    text-align: center;
}
.message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Home Page New Sections */
.mt-5 { margin-top: 4rem; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card .price {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact-section {
    text-align: center;
    padding: 3rem 2rem;
}

.contact-info h2 {
    color: var(--primary-color);
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-list li {
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .contact-list li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Hamburger & Mobile Nav */
.mobile-nav-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background: #0f1115;
    border-radius: 10px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

@media (max-width: 900px) {
    .hamburger-btn {
        display: flex;
    }
    
    .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
        z-index: -1;
        opacity: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-center.menu-open {
        transform: translateY(0);
        opacity: 1;
        z-index: 99;
    }
    
    /* Hamburger to X animation */
    .hamburger-btn.open span:first-child { transform: rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; }
    .hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg); }
    
    .nav-right a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #0c0e12;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4.5rem 5% 2.5rem;
    color: var(--text-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-hover));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4, .footer-socials h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.social-icons a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Selected Barber Preview Card */
.selected-worker-preview {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1rem;
    animation: slideDown 0.3s ease forwards;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.selected-worker-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    background-color: var(--surface-color);
}

.selected-worker-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.selected-worker-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
}

.selected-worker-title {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Admin Worker List styling with Avatar */
.admin-worker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.admin-worker-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.admin-worker-details {
    flex: 1;
}

/* File Upload styling for Admin Panel */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 1.2rem;
}

.file-upload-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px dashed var(--border-color);
    margin-bottom: 0.8rem;
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.file-upload-preview.active {
    display: block;
    border-style: solid;
    border-color: var(--primary-color);
}

.custom-file-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.custom-file-input:hover {
    border-color: var(--primary-color);
    background: rgba(245, 158, 11, 0.05);
}

.custom-file-input span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.custom-file-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Modal Dialog for Completing Appointments */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeInOverlay 0.25s ease forwards;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    width: 90%;
    max-width: 460px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalFadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin: 0.6rem 0 1.2rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.3rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions button {
    flex: 1;
}

@media (max-width: 480px) {
    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Daily Report Styling */
.report-section {
    margin-bottom: 1.5rem;
}

.report-section h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--primary-color);
    padding-left: 0.6rem;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.report-table th, .report-table td {
    padding: 0.75rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.report-table th {
    color: var(--text-muted);
    font-weight: 600;
}

.report-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.report-summary-box span {
    font-size: 1.1rem;
    font-weight: 700;
}

.report-grand-total {
    color: var(--primary-color);
    font-size: 1.3rem !important;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    #daily-report-modal, #daily-report-modal * {
        visibility: visible;
    }
    #daily-report-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
        color: #000 !important;
    }
    #daily-report-modal .modal-content {
        border: none !important;
        box-shadow: none !important;
        background: white !important;
        color: #000 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    #daily-report-modal h3 {
        color: #000 !important;
        border-bottom: 2px solid #000 !important;
    }
    #daily-report-modal .report-section h4 {
        color: #000 !important;
        border-left: 3px solid #000 !important;
    }
    #daily-report-modal .report-table th, #daily-report-modal .report-table td {
        border-bottom: 1px solid #ccc !important;
        color: #000 !important;
    }
    #daily-report-modal .report-summary-box {
        border: 1px solid #ccc !important;
        background: none !important;
    }
    #daily-report-modal .report-grand-total {
        color: #000 !important;
    }
    #close-report-modal-btn, #print-report-btn {
        display: none !important;
    }
}



