/* 
This file contains the styles for the login page, defining the layout, colors, fonts, and responsive design. 
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #f8f9fa;
    --card-bg: #ffffff;
    --accent-color: #4CAF50;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: #e0f4e8;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    overflow-y: auto; /* Change from hidden to auto */
    padding: 2rem 0; /* Add vertical padding */
}

body::before,
body::after {
    /*content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;  Ensure fruits appear above background*/
    display: none; /* Add this to completely disable the effects */
}

body::before {
    /* background: 
        radial-gradient(circle at 15% 25%, #FFB7C5 25px, transparent 26px),
        radial-gradient(ellipse at 75% 35%, #FFECB3 30px, transparent 31px),
        radial-gradient(circle at 45% 75%, #FFD180 28px, transparent 29px),
        radial-gradient(circle at 85% 65%, #FF8A80 22px, transparent 23px),
        radial-gradient(circle at 25% 55%, #DCEDC8 20px, transparent 21px);
    opacity: 0.8; */
    display: none; /* Disable the background effects */
}

body::after {
    /* background: 
        radial-gradient(circle at 65% 15%, #EF9A9A 18px, transparent 19px),
        radial-gradient(circle at 35% 85%, #FFF59D 25px, transparent 26px),
        radial-gradient(circle at 85% 45%, #C8E6C9 20px, transparent 21px),
        radial-gradient(circle at 15% 65%, #FFCCBC 24px, transparent 25px);
    opacity: 0.6; */
    display: none;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #4CAF50;
}

input[type="text"],
input[type="password"] {
    border: none;
    background: transparent;
    padding: 0.5rem;
    width: calc(100% - 40px);
    font-size: 1rem;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
        margin: 1rem auto;
    }

    .logo img {
        width: 180px; /* Make logo smaller on mobile */
        height: 180px;
    }

    body {
        padding: 1rem 0;
    }

    .login-box {
        padding: 1.5rem;
    }
}

/* Add these styles to your existing CSS */

.success-container,
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.success-box,
.error-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.status-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.button-group {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #4CAF50;
    color: white;
}

.secondary-btn {
    background-color: #f5f5f5;
    color: #333;
}

.primary-btn:hover {
    background-color: #45a049;
}

.secondary-btn:hover {
    background-color: #e5e5e5;
}

/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
    background: var(--primary-bg);
    margin-bottom: 60px; /* Adjust this value based on your footer height */
}

.sidebar {
    width: 280px;
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.user-info {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-info h3 {
    color: var(--text-primary); /* Changed from white to text-primary color */
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.nav-links li {
    margin-bottom: 10px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px; /* Base font size */
}

.nav-links a:hover {
    background: rgba(0, 0, 0, 0.08); /* Darker background for better visibility */
    color: var(--accent-color);
    transform: scale(1.02); /* Slightly increase size */
    font-size: 15px; /* Larger font on hover */
    font-weight: 500;
    padding-left: 15px; /* Add slight indent on hover */
}

.nav-links li.active a {
    background: rgba(76, 175, 80, 0.1); /* Light green background for active link */
    color: var(--accent-color);
    font-weight: 500;
}

.nav-links li.active a:hover {
    background: rgba(76, 175, 80, 0.2); /* Slightly darker on hover for active link */
    transform: scale(1.02);
    font-size: 15px;
}

.nav-links a i {
    margin-right: 10px;
    color: var(--text-primary); /* Also update icon color */
    transition: all 0.3s ease;
    font-size: 16px; /* Base icon size */
}

.nav-links a:hover i {
    color: var(--accent-color);
    transform: scale(1.1); /* Slightly increase icon size */
}

/* Main Content Container */
.main-content {
    flex: 1;
    padding: 2rem;
    margin-left: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto; /* Change from 100vh to auto */
    min-height: 100vh; /* Add min-height */
    overflow-y: auto; /* Change from hidden to auto */
    padding-bottom: 70px; /* Increase bottom padding to prevent content overlap */
}

/* Fixed Header Section */
.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    width: 100%;
    background: var(--primary-bg);
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.dashboard-left, .dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.calendar-card {
    margin-top: 20px;
}

.latest-updates {
    height: 100%;
}

.latest-info {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.latest-info:last-child {
    border-bottom: none;
}

.latest-info h4 {
    color: #333;
    margin-bottom: 10px;
}

.latest-info p {
    margin: 5px 0;
}

.latest-info small {
    display: block;
    color: #666;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        margin-bottom: 2rem; /* Add space before footer */
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
        min-height: 100vh;
        height: auto;
    }

    .page-header {
        padding: 0 0.5rem;
    }

    .welcome-header {
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .nav-toggle {
        top: 2rem;
        left: 2rem;
    }

    .matrix-container {
        margin: 0;
        padding: 0.5rem;
        border-radius: 0;
    }

    .table-container {
        margin: 0;
        padding: 0.5rem;
        border-radius: 0;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        padding: 0 5px;
    }

    .freeze-column {
        position: sticky;
        left: 0;
        z-index: 10;
        background: var(--card-bg);
        border-right: 2px solid rgba(255,255,255,0.1);
        min-width: 150px;
    }

    .matrix-table td,
    .matrix-table th {
        padding: 8px;
        font-size: 13px;
    }

    .page-header {
        padding: 0 0.5rem;
        width: 100%;
    }

    .search-container {
        width: 100%;
        padding: 0 0.5rem;
    }

    .search-input-group {
        width: 100%;
    }

    .title-section {
        margin-top: 1rem;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        transition: var(--transition);
        z-index: 1000;
    }

    .sidebar.active {
        left: 0;
    }

    .footer-main {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }
}

/* Table Container */
.table-container {
    flex: 1;
    overflow: auto; /* Enable both horizontal and vertical scrolling */
    margin: 0;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-sm);
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: var(--card-bg);
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.table-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to left, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

/* Table Styles */
.products-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--card-bg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    min-width: 100%;
}

.products-table th {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.products-table tr:nth-child(even) {
    background-color: rgba(255,255,255,0.05);
}

.products-table tr:nth-child(odd) {
    background-color: var(--card-bg);
}

.products-table tr:hover {
    background: rgba(76, 175, 80, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.products-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
}

/* Price column specific styling */
.products-table td:nth-child(5) {
    font-weight: 600;
    color: var(--text-primary);
}

/* SKU column specific styling */
.products-table td:nth-child(4) {
    font-family: monospace;
    color: var(--text-secondary);
}

/* Matrix Container Adjustments */
.matrix-container {
    margin: 0; /* Remove horizontal margin */
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    overflow: hidden;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.1);
}

.matrix-table th,
.matrix-table td {
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--text-primary);
    background-color: var(--card-bg);
}

.matrix-table th {
    background-color: var(--accent-color) !important;
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px;
    text-align: center;
}

.matrix-table thead tr {
    background-color: var(--accent-color);
}

th.freeze-column {
    background-color: var(--card-bg) !important;
    position: sticky;
    left: 0;
    z-index: 15;
    border-right: 2px solid rgba(255,255,255,0.1) !important;
}

.freeze-column {
    position: sticky;
    left: 0;
    background: var(--card-bg);
    z-index: 5;
    min-width: 200px;
    text-align: left !important;
    border-right: 2px solid rgba(255,255,255,0.1) !important;
}

.price-cell {
    width: 100px;
}

.lowest-price {
    background-color: rgba(0,255,136,0.1) !important;
    font-weight: 500;
    color: var(--text-primary);
}

.lowest-price-cell {
    background: rgba(3, 146, 241, 0.05);
    font-weight: 600;
    border-left: 2px solid rgba(255,255,255,0.1);
}

.lowest-price-cell small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85em;
    margin-top: 4px;
}

.no-price {
    color: var(--text-secondary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: var(--card-bg);
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.3s;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4CAF50;
    outline: none;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s;
}

.form-group textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    height: 40px;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}

/* Price Input Styles */
.price-input {
    position: relative;
    display: flex;
    align-items: center;
}

.price-input .currency {
    position: absolute;
    left: 10px;
    color: #666;
    font-weight: 500;
}

.price-input input {
    padding-left: 40px !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Adjust table column widths for shops */
.products-table th:nth-child(1),
.products-table td:nth-child(1) {
    width: 20%;
}

.products-table th:nth-child(2),
.products-table td:nth-child(2) {
    width: 20%;
}

.products-table th:nth-child(3),
.products-table td:nth-child(3) {
    width: 15%;
}

.products-table th:nth-child(4),
.products-table td:nth-child(4) {
    width: 35%;
}

.products-table th:last-child,
.products-table td:last-child {
    width: 10%;
}

/* Page Header and Content Layout */
.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.title-section {
    text-align: center;
    width: 100%;
    margin-top: 2rem;
}

.title-section h1 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.75rem;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1rem 0;
}

/* Welcome Header Styles */
.welcome-header {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding-top: 2.5rem;
}

.welcome-text h2 {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.welcome-text h1 {
    font-size: 2rem;
    margin: 0;
}

/* Stats Grid Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-info h3 {
    color: #000000;
}

.stat-number {
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.stat-trend {
    color: #4CAF50;
    font-size: 0.875rem;
}

/* Chart Container Styles */
.chart-container {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
}

.chart-container h3 {
    color: #f3dede;
}

/* Updates Container Styles */
.updates-container {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
}

.update-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.update-icon {
    background: rgba(0, 117, 255, 0.1);
    color: var(--accent-color);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-right: 1rem;
}

.update-content h4 {
    color: #000000;
    margin: 0;
    font-size: 1rem;
}

.update-content p {
    color: #000000;
    margin: 0.25rem 0;
}

.update-content small {
    color: #000000;
    opacity: 0.7;
}

/* Sidebar Drawer Styles */
.sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--card-bg);
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 4px 0 10px rgba(0,0,0,0.2);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.close-sidebar:hover {
    color: var(--accent-color);
}

.nav-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: #0056b3;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

/* Adjust main content */
.main-content {
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

.main-content.shifted {
    margin-left: 280px;
}

/* Make sidebar responsive */
@media (max-width: 768px) {
    .main-content.shifted {
        margin-left: 0;
    }
    
    .sidebar {
        width: 260px;
        left: -260px;
    }
}

/* Delete Button Styles */
.delete-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.delete-btn:hover {
    background-color: #c82333;
}

.delete-btn i {
    color: white;
}

/* Logo Styles */
.logo {
    margin-bottom: 1.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05); /* Added slightly dark background */
    padding: 1rem;
    border-radius: 12px;
}

.logo img {
    width: 256px;
    height: 256px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Login Container Adjustments */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    margin: auto; /* Center container */
}

/* Login Box Styles */
.login-box {
    background: rgba(255, 255, 255, 0.85); /* Made slightly more transparent */
    position: relative;
    border-radius: 15px;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg-fruit.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; /* Increased opacity to make image more visible */
    border-radius: 15px;
    z-index: -1;
}

.login-box .decorative-dot-top {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    opacity: 0.5;
}

.login-box .decorative-dot-bottom {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #45a049;
    border-radius: 50%;
    opacity: 0.5;
}

/* Ensure form content stays above the background */
.login-box > * {
    position: relative;
    z-index: 1;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.input-group {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.input-group i {
    color: #6c757d;
    margin-right: 10px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.login-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #6c757d;
}

.footer a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

/* Add Footer Styles */
.footer-main {
    background: var(--card-bg);
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: var(--shadow-sm);
    z-index: 100;
}