/* ===========================================
   PANDAEATS - MODERN GREEN THEME STYLESHEET
   =========================================== */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* === RESET / BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.topbar {
    background: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    align-items: center;
}

.logo span {
    font-size: 22px;
    font-weight: bold;
    color: green;
}

.nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #2e7d32;
    font-weight: 600;
}
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
}

/* === TOP BAR — Modern green theme === */
.topbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 2px solid #e8f5e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 45px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
.logo span {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #2e7d32, #4caf50, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}
.nav a:hover {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* User greeting badge */
.user-greeting {
    background: #4caf50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
}

/* Cart badge */
.cart-badge {
    background: #ff5722;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 5px;
    min-width: 20px;
    text-align: center;
}

/* === BANNER — Enhanced green theme === */
.banner {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 50%, #81c784 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.banner::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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.banner-text {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
}

.banner-text h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 10px 0;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-text .food-delivery {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    opacity: 0.95;
}

.estd-badge {
    font-size: 20px;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 15px 0 20px 0;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-text p {
    font-size: 20px;
    margin: 0 0 30px 0;
    opacity: 0.95;
    font-weight: 400;
    max-width: 500px;
    line-height: 1.5;
}

.steps {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.steps div {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
    transition: transform 0.3s ease;
}
.steps div:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}
.steps div strong {
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.banner-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 5px 15px rgba(76, 175, 80, 0.1);
    border: 4px solid rgba(255,255,255,0.8);
    overflow: hidden;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.banner-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    background: white;
    padding: 10px;
}

/* === SEARCH — Enhanced modern design === */
.search {
    width: calc(100% - 80px);
    display: block;
    margin: 40px auto 30px auto;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 18px;
    outline: none;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}
.search:focus {
    border-color: #4caf50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
}
.search::placeholder {
    color: #999;
    font-weight: 400;
}

/* === SECTION TITLE — Enhanced styling === */
.section-title {
    margin: 40px 0 20px 40px;
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    border-radius: 2px;
}
.section-title i {
    font-weight: 400;
    color: #666;
    letter-spacing: 2px;
    margin-left: 5px;
}

/* === RESTAURANT GRID — Enhanced cards === */
.restaurants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px 40px 50px 40px;
    align-items: start;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.restaurant-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.restaurant-link:hover {
    transform: translateY(-5px);
}

.card {
    text-align: center;
    width: 100%;
    max-width: 280px;
    min-height: 320px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 3px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0) 0%, rgba(76, 175, 80, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.card:hover::before {
    opacity: 1;
}

.card-content {
    padding: 25px 20px 20px 20px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.restaurant-logo-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid #e8f5e8;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover .restaurant-logo-container {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    background: white;
    padding: 5px;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.restaurant-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.restaurant-name {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.restaurant-category {
    font-size: 12px;
    font-weight: 600;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

.restaurant-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-weight: 700;
    color: #2e7d32;
    font-size: 16px;
}

.stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(139, 195, 74, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.card:hover .card-hover-overlay {
    opacity: 1;
}

.hover-content {
    text-align: center;
    color: white;
}

.view-menu-text {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.arrow-icon {
    font-size: 24px;
    font-weight: bold;
}

/* === STATUS MESSAGES === */
.restaurant-count {
    background: linear-gradient(45deg, #e8f5e8, #f1f8e9);
    border: 1px solid #c8e6c9;
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 500;
    color: #2e7d32;
}

.empty-state, .error-message {
    background: linear-gradient(135deg, #fff3e0, #fff8e1);
    border: 2px solid #ffcc02;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
}

.empty-state h3, .error-message h3 {
    color: #f57c00;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.empty-state p, .error-message p {
    color: #e65100;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* === FOOTER — Enhanced modern design === */
.footer {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 50px 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    background: #fff;
    color: #2e7d32;
    transform: translateY(-3px);
}

/* === FORMS — Modern styling === */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e8f5e8;
}

.form-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background: white;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-checkout {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    width: 100%;
}

.btn-checkout:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #757575, #9e9e9e);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(117, 117, 117, 0.3);
}

.btn-danger {
    background: linear-gradient(45deg, #f44336, #e53935);
}

.btn-danger:hover {
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3);
}

/* === DASHBOARD CARDS === */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.dashboard-header p {
    font-size: 18px;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e8f5e8;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-card i {
    font-size: 48px;
    color: #4caf50;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.action-card i {
    font-size: 32px;
    color: #4caf50;
    margin-bottom: 20px;
}

.action-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 15px;
}

.action-card p {
    color: #666;
    line-height: 1.6;
}

/* === TABLES — Modern styling === */
.table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.table-header {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e8f5e8;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2e7d32;
    font-size: 16px;
}

tr:hover {
    background: #f8f9fa;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3e0;
    color: #f57c00;
}

.status-processing {
    background: #e3f2fd;
    color: #1976d2;
}

.status-delivered {
    background: #e8f5e8;
    color: #2e7d32;
}

.status-cancelled {
    background: #ffebee;
    color: #d32f2f;
}

/* === ALERTS & MESSAGES === */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: 500;
}

.alert-success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #ffebee;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.alert-warning {
    background: #fff3e0;
    color: #f57c00;
    border: 1px solid #ffcc02;
}

.alert-info {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.hidden { display: none; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .topbar {
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }

    .banner-text h1 {
        font-size: 32px;
    }

    .banner-text .food-delivery {
        font-size: 24px;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .restaurants {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .card {
        max-width: 100%;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .stats-grid, .quick-actions {
        grid-template-columns: 1fr;
    }

    .form-container {
        margin: 20px;
        padding: 30px 20px;
    }

    .table-container {
        margin: 20px 0;
    }

    th, td {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 28px;
    }

    .banner-text .food-delivery {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
        margin: 30px 0 15px 20px;
    }

    .restaurant-name {
        font-size: 18px;
    }

    .stat-card h3 {
        font-size: 28px;
    }
}

/* === CATEGORY COLORS === */
.category-fast-food { background: linear-gradient(45deg, #FF6B35, #FF8C42); }
.category-filipino { background: linear-gradient(45deg, #2E8B57, #32CD32); }
.category-chinese { background: linear-gradient(45deg, #D4A017, #FFD700); }
.category-pizza { background: linear-gradient(45deg, #E74C3C, #FF6B6B); }
.category-japanese { background: linear-gradient(45deg, #FF8C00, #FFA500); }
.category-desserts { background: linear-gradient(45deg, #FF69B4, #FF1493); }
.category-beverages { background: linear-gradient(45deg, #4169E1, #1E90FF); }
.category-italian { background: linear-gradient(45deg, #DC143C, #FF4500); }
.category-mexican { background: linear-gradient(45deg, #FF4500, #FF6347); }
.category-thai { background: linear-gradient(45deg, #32CD32, #00FF7F); }
.category-korean { background: linear-gradient(45deg, #FF1493, #FF69B4); }
.category-american { background: linear-gradient(45deg, #1E90FF, #4169E1); }

/* === ADD TO CART BUTTON - Green Theme === */
.add-btn {
    background: linear-gradient(45deg, #4caf50, #66bb6a) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2) !important;
}

.add-btn:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4) !important;
}

.add-btn:active {
    transform: translateY(0) !important;
}
