/* style.css */

/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    background-color: #fafafa;
    color: #1d1d1f;
    /* Padding-top will be dynamically set by JavaScript */
}

[data-bs-theme="dark"] body {
    background-color: #1d1d1f;
    color: #f5f5f5;
}

/* Container adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Announcement bar styling */
.announcement-bar {
    background: linear-gradient(90deg, #1a3c5e, #2a6f97);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.announcement-bar a {
    color: #00aaff;
    text-decoration: none;
    margin-left: 5px;
    font-weight: 500;
}
.announcement-bar a:hover {
    text-decoration: underline;
}
[data-bs-theme="dark"] .announcement-bar {
    background: linear-gradient(90deg, #721c24, #a83c44);
    color: #f8d7da;
}
[data-bs-theme="dark"] .announcement-bar a {
    color: #00d4ff;
}

/* Navbar styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1010;
}
[data-bs-theme="dark"] .navbar {
    background-color: rgba(29, 29, 31, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-brand img { 
    height: 40px; 
}
.nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px !important;
    color: #1d1d1f !important;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.nav-link:hover { 
    color: #0071e3 !important; 
    background-color: rgba(0, 113, 227, 0.1);
}
[data-bs-theme="dark"] .nav-link {
    color: #f5f5f5 !important;
}
[data-bs-theme="dark"] .nav-link:hover {
    color: #00d4ff !important;
    background-color: rgba(0, 212, 255, 0.1);
}
.navbar .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 0;
    padding: 5px 0;
    display: none;
}
[data-bs-theme="dark"] .navbar .dropdown-menu {
    background-color: rgba(29, 29, 31, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .dropdown-menu.show {
    display: block;
}
.navbar .dropdown-item {
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    padding: 8px 20px 8px 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}
[data-bs-theme="dark"] .navbar .dropdown-item {
    color: #f5f5f5;
}
.navbar .dropdown-item:hover {
    background-color: rgba(0, 113, 227, 0.1);
    color: #0071e3;
}
[data-bs-theme="dark"] .navbar .dropdown-item:hover {
    background-color: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

/* Submenu indicator (dash) styling for desktop */
.submenu-indicator {
    color: #6e6e73;
    font-weight: 600;
}
[data-bs-theme="dark"] .submenu-indicator {
    color: #adb5bd;
}

/* Dropdown arrow styling */
.dropdown-arrow {
    color: #ffffff !important; /* Ensure contrast with background */
    transition: transform 0.3s ease;
}
[data-bs-theme="dark"] .dropdown-arrow {
    color: #ffffff !important;
}
.nav-link.dropdown-toggle.show .dropdown-arrow,
.dropdown-item.dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Nested dropdown styles */
.navbar .dropdown-menu .dropdown-menu {
    margin-top: 5px;
    left: 0;
    display: none;
}
.navbar .dropdown:hover > .dropdown-menu {
    display: block;
}
.navbar .dropdown-item.dropdown-toggle {
    position: relative;
}
.navbar .dropdown-item.dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Specific styles for subsubmenu (submenu-level-3) */
.navbar .submenu-level-3 {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: 5px;
    margin-left: 20px;
    padding: 5px 0;
    display: none;
}
[data-bs-theme="dark"] .navbar .submenu-level-3 {
    background-color: rgba(29, 29, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar .submenu-level-3.show {
    display: block;
}
.navbar .submenu-level-3 .dropdown-item {
    padding-left: 40px;
    font-weight: 500;
}

/* SpaceX-inspired profile dropdown */
.profile-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1d1d1f !important;
    font-weight: 600;
}
[data-bs-theme="dark"] .profile-dropdown .nav-link {
    color: #f5f5f5 !important;
}
.profile-dropdown .nav-link i {
    font-size: 24px;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .profile-dropdown .nav-link i {
    color: #f5f5f5;
}
.profile-dropdown .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}
[data-bs-theme="dark"] .profile-dropdown .dropdown-menu {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}
.profile-dropdown .dropdown-item {
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    padding: 10px 20px 10px 30px;
    transition: background-color 0.3s ease;
}
[data-bs-theme="dark"] .profile-dropdown .dropdown-item {
    color: #f5f5f5;
}
.profile-dropdown .dropdown-item:hover {
    background-color: #f5f5f7;
}
[data-bs-theme="dark"] .profile-dropdown .dropdown-item:hover {
    background-color: #343a40;
}
.profile-email {
    font-size: 0.9rem;
    color: #6e6e73;
    padding: 8px 20px;
    border-bottom: 1px solid #e5e5e5;
}
[data-bs-theme="dark"] .profile-email {
    color: #adb5bd;
    border-bottom: 1px solid #444;
}

/* Remove hover behavior for dropdowns to avoid conflict with Bootstrap's toggle */
@media (min-width: 992px) {
    .profile-dropdown .dropdown-toggle::after {
        display: inline-block;
    }
    .dropdown-toggle::after {
        display: inline-block;
    }
}

/* SpaceX-inspired mobile menu styling */
@media (max-width: 991px) {
    /* Full-screen overlay menu with SpaceX theme */
    .navbar {
        padding: 10px 0;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #3a4b4f;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 60px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }
    [data-bs-theme="dark"] .navbar-collapse {
        background-color: #1c2526;
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    /* Adjust navbar toggler position and style */
    .navbar-toggler {
        z-index: 1100;
        border: none;
        color: #ffffff; /* Ensure toggler icon contrasts */
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    [data-bs-theme="dark"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* Hide default dropdown arrow on mobile */
    .dropdown-toggle::after {
        display: none !important;
    }
    /* Menu items */
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }
    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 5px;
    }
    /* Level 1: Main menu items (e.g., MODULES) */
    .navbar-nav .nav-link {
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #f5f5f5;
        padding: 15px 20px !important;
        min-height: 48px;
        display: flex;
        align-items: center;
        transition: color 0.3s ease, background-color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navbar-nav .nav-link:hover {
        color: #00d4ff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .navbar-nav .dropdown-toggle {
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #f5f5f5;
        padding: 15px 20px !important;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        transition: color 0.3s ease, background-color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navbar-nav .dropdown-toggle:hover {
        color: #00d4ff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    /* Rotating chevron for Level 1 */
    .navbar-nav .dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    .navbar-nav .dropdown-toggle.show .dropdown-arrow {
        transform: rotate(180deg);
    }
    /* Level 1 dropdown menu */
    .navbar-nav .dropdown-menu {
        width: 100%;
        margin-top: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
    }
    .navbar-nav .dropdown-menu.show {
        display: block;
    }
    /* Level 2: Submenu items (e.g., Tools, HRM) */
    .navbar-nav .dropdown-item.dropdown-toggle {
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #d1e4ff;
        padding: 12px 20px 12px 30px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: color 0.3s ease, background-color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .navbar-nav .dropdown-item.dropdown-toggle:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    /* Rotating chevron for Level 2 */
    .navbar-nav .dropdown-item.dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    .navbar-nav .dropdown-item.dropdown-toggle.show .dropdown-arrow {
        transform: rotate(180deg);
    }
    /* Level 2: Submenu items without children */
    .navbar-nav .dropdown-item.submenu-item {
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #d1e4ff;
        padding: 12px 20px 12px 30px;
        min-height: 48px;
        display: flex;
        align-items: center;
        transition: color 0.3s ease, background-color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .navbar-nav .dropdown-item.submenu-item:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    /* Level 3: Child items (e.g., QR Code Generator) */
    .navbar-nav .submenu-level-3 {
        width: 100%;
        margin-top: 0;
        border: none;
        box-shadow: none;
        padding: 0 0 0 40px;
        background-color: transparent;
    }
    .navbar-nav .submenu-level-3.show {
        display: block;
    }
    .navbar-nav .submenu-level-3 .dropdown-item {
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        color: #a3c7ff;
        padding: 10px 20px 10px 20px;
        min-height: 40px;
        display: flex;
        align-items: center;
        transition: color 0.3s ease, background-color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .navbar-nav .submenu-level-3 .dropdown-item:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    /* Profile dropdown in mobile */
    .profile-dropdown .nav-link {
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #f5f5f5;
        padding: 15px 20px !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .profile-dropdown .dropdown-menu {
        width: 100%;
        padding: 5px 20px;
        background-color: transparent;
    }
    .profile-dropdown .dropdown-item {
        font-size: 1.1rem;
        font-weight: 500;
        color: #a3c7ff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    .profile-dropdown .dropdown-item:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .profile-email {
        color: #6e6e73;
    }
    [data-bs-theme="dark"] .profile-email {
        color: #adb5bd;
    }
    /* Announcement bar on mobile */
    .announcement-bar {
        font-size: 0.8rem;
        padding: 8px;
    }
}

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 0 10px;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .theme-toggle {
    color: #f5f5f5;
}

/* Other existing styles */
.hero-section, .promo-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg, .promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: opacity 1s ease-in-out;
}
.hero-content, .promo-content {
    position: relative;
    z-index: 1;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .hero-content, [data-bs-theme="dark"] .promo-content {
    color: #f5f5f5;
}
.hero-content p, .promo-content p {
    color: #6e6e73;
}
[data-bs-theme="dark"] .hero-content p, [data-bs-theme="dark"] .promo-content p {
    color: #adb5bd;
}
.feature-section, .testimonial-section, .cta-section {
    padding: 80px 0;
    background: #ffffff;
}
[data-bs-theme="dark"] .feature-section, [data-bs-theme="dark"] .testimonial-section, [data-bs-theme="dark"] .cta-section {
    background: #1d1d1f;
}
.feature-card, .testimonial-card {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
}
[data-bs-theme="dark"] .feature-card, [data-bs-theme="dark"] .testimonial-card {
    background-color: #2c2c2e;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.feature-card img, .testimonial-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.feature-card p, .testimonial-card p {
    color: #6e6e73;
}
[data-bs-theme="dark"] .feature-card p, [data-bs-theme="dark"] .testimonial-card p {
    color: #adb5bd;
}

.footer {
    background-color: #1c2526;
    color: #d2d2d7;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
}
[data-bs-theme="dark"] .footer {
    background-color: #0a0a0a;
    border-top: 1px solid #444;
}
.footer a {
    color: #d2d2d7;
    text-decoration: none;
}
[data-bs-theme="dark"] .footer a {
    color: #adb5bd;
}
.footer a:hover {
    color: #ffffff;
}
.footer p {
    font-size: 0.9rem;
    color: #6e6e73;
}
[data-bs-theme="dark"] .footer p {
    color: #adb5bd;
}

.btn-primary {
    background-color: #0071e3;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}
[data-bs-theme="dark"] .btn-primary {
    background-color: #00d4ff;
}
.btn-primary:hover {
    background-color: #005bb5;
}
[data-bs-theme="dark"] .btn-primary:hover {
    background-color: #00aaff;
}
.btn-light {
    background-color: #ffffff;
    border: 1px solid #d2d2d7;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    color: #1d1d1f;
    margin: 0 10px;
}
[data-bs-theme="dark"] .btn-light {
    background-color: #2c2c2e;
    border: 1px solid #444;
    color: #f5f5f5;
}
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Login Modal Styles */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    background-color: #fff;
}
[data-bs-theme="dark"] .modal-content {
    background-color: #2c2c2e;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.modal-header {
    border-bottom: none;
    padding-bottom: 0;
    background-color: #f8f9fa;
}
[data-bs-theme="dark"] .modal-header {
    background-color: #343a40;
}
.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .modal-title {
    color: #f5f5f5;
}
.modal-body {
    padding: 20px 40px;
}
.form-label {
    font-size: 14px;
    color: #6e6e73;
    font-weight: 500;
}
[data-bs-theme="dark"] .form-label {
    color: #adb5bd;
}
.form-control {
    border-radius: 8px;
    border: 1px solid #d2d2d7;
    padding: 10px;
    font-size: 14px;
    background-color: #fff;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .form-control {
    border: 1px solid #444;
    background-color: #343a40;
    color: #f5f5f5;
}
.form-control:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}
[data-bs-theme="dark"] .form-control:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}
.btn-login {
    background-color: #0071e3;
    border: none;
    border-radius: 25px;
    padding: 10px;
    font-weight: 500;
    color: #ffffff;
    width: 100%;
}
[data-bs-theme="dark"] .btn-login {
    background-color: #00d4ff;
}
.btn-login:hover {
    background-color: #005bb5;
}
[data-bs-theme="dark"] .btn-login:hover {
    background-color: #00aaff;
}
.alert {
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
}

/* Card styles for forms and sections */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
[data-bs-theme="dark"] .card {
    background-color: #2c2c2e;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* Form styles */
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 1rem;
    background-color: #fff;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .form-control, [data-bs-theme="dark"] .form-select {
    border: 1px solid #444;
    background-color: #343a40;
    color: #f5f5f5;
}
.form-control:focus, .form-select:focus {
    border-color: #007aff;
    box-shadow: 0 0 5px rgba(0, 122, 255, 0.3);
    outline: none;
}
[data-bs-theme="dark"] .form-control:focus, [data-bs-theme="dark"] .form-select:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}
.form-check-label {
    font-size: 0.9rem;
    color: #6e6e73;
}
[data-bs-theme="dark"] .form-check-label {
    color: #adb5bd;
}

/* Button styles */
.btn-primary {
    background-color: #007aff;
    border-color: #007aff;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
[data-bs-theme="dark"] .btn-primary {
    background-color: #00d4ff;
    border-color: #00d4ff;
}
.btn-primary:hover {
    background-color: #005bb5;
    border-color: #005bb5;
}
[data-bs-theme="dark"] .btn-primary:hover {
    background-color: #00aaff;
    border-color: #00aaff;
}
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}
[data-bs-theme="dark"] .btn-success {
    background-color: #34c759;
    border-color: #34c759;
}
.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
}
[data-bs-theme="dark"] .btn-success:hover {
    background-color: #2ea44f;
    border-color: #2ea44f;
}
.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
}
[data-bs-theme="dark"] .btn-warning {
    background-color: #ff9500;
    border-color: #ff9500;
    color: #fff;
}
.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}
[data-bs-theme="dark"] .btn-warning:hover {
    background-color: #cc7a00;
    border-color: #cc7a00;
}

/* Table styles for employee management and facebook pages */
.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
[data-bs-theme="dark"] .table {
    background-color: #2c2c2e;
}
.table th, .table td {
    padding: 12px 15px;
    vertical-align: middle;
}
.table th {
    background-color: #f1f3f5;
    font-weight: 600;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .table th {
    background-color: #343a40;
    color: #f5f5f5;
}
.table td {
    border-top: 1px solid #dee2e6;
    color: #1d1d1f;
}
[data-bs-theme="dark"] .table td {
    border-top: 1px solid #444;
    color: #f5f5f5;
}
.table-responsive {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
[data-bs-theme="dark"] .table-responsive {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* Product card styles */
.product.card {
    transition: transform 0.3s ease;
}
.product.card:hover {
    transform: translateY(-5px);
}
.product img {
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .card {
        padding: 15px;
    }
    .table th, .table td {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    .product.card {
        padding: 10px;
    }
}