﻿/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Grattonz Brand Colors */
    --primary-purple: #5A4B7C;
    --secondary-purple: #8E7CC3;
    --light-purple: #B8A9D9;
    --accent-gold: #D4AF37;
    --light-gold: #F4E4BC;
    --dark-purple: #3E3456;
    --cream: #FFF8F0;
    --text-dark: #2C2441;
    --text-medium: #6B5B95;
    --text-light: #9B8FC7;
    --background-gray: #f8f9fa;
    --card-background: #ffffff;
    --border-light: #e9ecef;
    --shadow-light: rgba(90, 75, 124, 0.08);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--background-gray);
    min-height: 100vh;
    font-size: 18px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--background-gray);
}

/* Main Content */
.main-content {
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Top Navigation (Centered Brand) */
.top-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.brand-section h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-purple);
    margin: 0;
}

.nav {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 1.2rem;
}

    .nav-link:hover {
        color: var(--accent-gold);
        background: rgba(212, 175, 55, 0.1);
    }

/* Welcome Section (Index Page) */
.welcome-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 3rem;
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

    .welcome-section h2 {
        color: var(--primary-purple);
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 300;
    }

    .welcome-section p {
        color: var(--text-medium);
        font-size: 1.4rem;
    }

/* Options Container (Index Page) */
.options-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-top: 30px;
    padding: 0 20px;
    width: 100%; /* Ensure container takes full width */
}

/* Option Card */
.option-card {
    text-align: center;
    width: 300px;
    background: var(--card-background);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0; /* Prevent unwanted stretching */
}

.card-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    display: flex;
    justify-content: center;
}

.option-card h3 {
    color: var(--primary-purple);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.option-card p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    flex-grow: 1; /* Allow text to grow and push button down */
}

.option-card .btn {
    margin-top: auto;
    width: 100%; /* Ensure button takes full card width */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .options-container {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
        gap: 20px;
        padding: 0 10px;
    }

    .option-card {
        width: 100%; /* Full width of container */
        max-width: 350px; /* Increased max-width to fit content better */
        padding: 1.5rem 1rem; /* Reduced padding for mobile */
        box-sizing: border-box; /* Ensure padding doesn't add to width */
    }

    .card-icon {
        font-size: 3rem; /* Smaller icon */
    }

    .option-card h3 {
        font-size: 1.3rem; /* Adjusted for mobile readability */
    }

    .option-card p {
        font-size: 1rem;
        margin-bottom: 1rem; /* Reduced margin */
    }

    .option-card .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .options-container {
        gap: 15px;
        padding: 0 5px;
    }

    .option-card {
        max-width: 300px; /* Adjusted max-width */
        padding: 1rem 0.8rem; /* Further reduced padding */
    }

    .card-icon {
        font-size: 2.5rem; /* Even smaller icon */
    }

    .option-card h3 {
        font-size: 1.1rem;
    }

    .option-card p {
        font-size: 0.9rem;
    }

    .option-card .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}
/* Page Title - Bigger */
.page-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

    .page-title h2 {
        color: var(--primary-purple);
        font-size: 2.8rem;
        margin-bottom: 1rem;
        font-weight: 400;
    }

    .page-title p {
        color: var(--text-medium);
        font-size: 1.3rem;
    }

/* Form Container - Bigger */
.form-container {
    background: var(--card-background);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

/* Form Sections - Bigger Spacing */
.form-section {
    margin-bottom: 3.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

    .form-section:last-child {
        margin-bottom: 0;
    }

    .form-section h3 {
        color: var(--primary-purple);
        margin-bottom: 2rem;
        font-weight: 500;
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
        border-bottom: 3px solid var(--accent-gold);
        display: inline-block;
        background: none;
        box-shadow: none;
    }

/* Form Groups - Bigger */
.form-group {
    margin-bottom: 2rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 1.2rem 1.5rem;
        border: 2px solid var(--border-light);
        border-radius: 8px;
        font-size: 1.1rem;
        transition: all 0.2s ease;
        background: var(--card-background);
        color: var(--text-dark);
        font-family: inherit;
        line-height: 1.4;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }

    .form-group small {
        color: var(--text-light);
        font-size: 1rem;
        margin-top: 0.5rem;
        display: block;
    }

/* Input Group - Bigger */
.input-group {
    display: flex;
    gap: 1rem;
    align-items: end;
}

    .input-group input {
        flex: 1;
    }

/* Button Styles - Much Bigger */
.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
}

    .btn-primary:hover {
        background: var(--dark-purple);
        transform: translateY(-2px);
    }

.btn-secondary {
    background: var(--accent-gold);
    color: var(--dark-purple);
    font-weight: 600;
}

    .btn-secondary:hover {
        background: #B8860B;
        transform: translateY(-2px);
    }

.btn-success {
    background: var(--accent-gold);
    color: var(--dark-purple);
    font-weight: 600;
}

    .btn-success:hover {
        background: #B8860B;
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-medium);
}

    .btn-outline:hover {
        background: var(--background-gray);
        border-color: var(--text-medium);
        transform: translateY(-1px);
    }

.btn-disabled {
    background: var(--border-light);
    color: var(--text-light);
    cursor: not-allowed;
}

    .btn-disabled:hover {
        transform: none;
    }

/* Form Actions - Bigger Spacing */
.form-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-light);
}

/* Success Message - Bigger */
.success-message {
    background: var(--card-background);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    color: var(--text-dark);
    box-shadow: 0 4px 20px var(--shadow-light);
}

    .success-message h3 {
        margin-bottom: 1.5rem;
        color: var(--primary-purple);
        font-weight: 500;
        font-size: 1.8rem;
    }

    .success-message p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

.card-summary,
.utilization-details {
    background: var(--background-gray);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
    text-align: left;
}

    .card-summary p,
    .utilization-details p {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        font-size: 1.1rem;
    }

.status-active {
    background: var(--accent-gold);
    color: var(--dark-purple);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

/* Validation Results - Bigger */
.validation-results {
    max-width: 100%;
    margin: 3rem 0;
}

.card-details {
    background: var(--card-background);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px var(--shadow-light);
}

    .card-details h3 {
        color: var(--primary-purple);
        margin-bottom: 2rem;
        text-align: center;
        font-weight: 500;
        font-size: 1.8rem;
        padding-bottom: 1rem;
        border-bottom: 3px solid var(--accent-gold);
    }

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--background-gray);
    font-size: 1.1rem;
}

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-row .label {
        font-weight: 500;
        color: var(--text-dark);
        min-width: 180px;
    }

    .detail-row .value {
        color: var(--text-medium);
        text-align: right;
    }

.status-valid {
    background: var(--accent-gold);
    color: var(--dark-purple);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.status-redeemed {
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.action-section {
    text-align: center;
    padding: 2rem 0;
}

    .action-section .btn {
        margin: 1rem;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
    }

    .main-content {
        padding: 2rem;
        max-width: 100%;
    }

    .top-navigation {
        padding: 2rem;
    }

    .brand-section {
        margin-bottom: 1.5rem;
    }

    .brand-logo {
        height: 70px;
    }

    .brand-section h1 {
        font-size: 2.2rem;
    }

    .nav {
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    .options-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .welcome-section h2 {
        font-size: 2.5rem;
    }

    .welcome-section p {
        font-size: 1.3rem;
    }

    .page-title h2 {
        font-size: 2.3rem;
    }

    .page-title p {
        font-size: 1.2rem;
    }

    .form-container {
        padding: 2.5rem;
    }

    .form-section h3 {
        font-size: 1.4rem;
    }

    .form-group label {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }

    .form-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
        font-size: 1rem;
    }

        .detail-row .value {
            text-align: left;
        }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1.5rem;
    }

    .top-navigation,
    .welcome-section,
    .page-title,
    .form-container {
        padding: 2rem;
    }

        .welcome-section h2 {
            font-size: 2.2rem;
        }

    .brand-section h1 {
        font-size: 2rem;
    }

    .brand-logo {
        height: 60px;
    }

    .form-section h3 {
        font-size: 1.3rem;
    }

    body {
        font-size: 16px;
    }
}

/* Simple animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container,
.validation-results,
.success-message {
    animation: fadeIn 0.3s ease-out;
}

/* Print Styles */
@media print {
    .top-navigation,
    .form-actions,
    .action-section {
        display: none;
    }

    body {
        background: white;
        font-size: 14px;
    }

    .container {
        max-width: none;
    }

    .form-section,
    .card-details,
    .success-message {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}




.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 100px;
    margin-bottom: 30px;
}

.header-left a {
    font-size: 1.25rem;
    color: #5d40bd;
    text-decoration: none;
    font-weight: bold;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.5rem;
}

.btn-logout, .btn-login {
    padding: 7px 16px;
    margin-left: 10px;
    color: #fff;
    background: #6847df;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s;
}

    /*.btn-logout:hover, .btn-login:hover {
        background: #5635bf;
    }*/

@media (max-width: 700px) {
    .main-header {
        flex-direction: column;
        padding: 0 12px;
        height: auto;
        min-height: 48px;
    }

    .header-left {
        width: 100%;
        margin-bottom: 6px;
        text-align: left;
    }

    .header-right {
        width: 100%;
        justify-content: flex-end;
    }
}


.btn-plus {
    background: #ede9f7;
    color: #5a4892;
    border: 1px solid #b8b0d7;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 2px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.14s;
}

    .btn-plus:hover {
        background: #876ed6;
        color: #fff;
        border-color: #7a67ee;
    }


.w-80 {
    height: 80px;
}

.summary-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

    .summary-card h3 {
        margin: 0 0 10px 0;
        color: #6c757d;
        font-size: 14px;
    }

    .summary-card .count, .summary-card .amount {
        font-size: 24px;
        font-weight: bold;
        color: #dc3545;
    }

/* ===== Transactions Table ===== */
.transactions-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow-x: auto; /* scroll horizontally on mobile */
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th, td {
    white-space: nowrap; /* prevents columns from wrapping */
    text-align: left;
    padding: 8px 10px;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ===== Badge Styles ===== */
.badge.bg-danger {
    background-color: #dc3545 !important;
    color: white;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: black;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 768px) {
    .summary-cards {
        flex-direction: column;
        gap: 15px;
    }

    .summary-card {
        padding: 15px;
    }

    table {
        font-size: 12px;
    }

    .btn {
        font-size: 12px;
        padding: 5px 8px;
    }
}

@media screen and (max-width: 480px) {
    .summary-cards {
        gap: 10px;
    }

    .summary-card h3 {
        font-size: 12px;
    }

    .summary-card .count, .summary-card .amount {
        font-size: 18px;
    }

    table {
        font-size: 11px;
    }

    th, td {
        padding: 6px;
    }
}
.gift-card-input-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    position: relative;
    z-index:888;
}

    .gift-card-input-row .form-group {
        flex: 1;
        margin-bottom: 10px;
        min-width: 100%;
    }

        .gift-card-input-row .form-group:last-child {
            flex: none;
            min-width: auto;
        }

.btn {
    padding: 8px 16px;
    font-size: 16px;
    touch-action: manipulation;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

#giftCardsGrid {
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #dee2e6;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    font-size: 13px;
}

    .table th,
    .table td {
        padding: 8px;
        vertical-align: middle;
        white-space: normal;
        word-break: break-word;
    }

    .table th {
        background: #f8f9fa;
    }

        .table th:nth-child(1),
        .table td:nth-child(1) {
            width: 40%;
        }

        .table th:nth-child(2),
        .table td:nth-child(2) {
            width: 30%;
        }

        .table th:nth-child(3),
        .table td:nth-child(3) {
            width: 30%;
        }

.grid-summary {
    margin-top: 15px;
    padding: 10px;
    background: #e9ecef;
    border-radius: 5px;
    text-align: right;
    font-size: 14px;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.dropdown-wrapper {
    position: relative;
    width: 100%;
}

select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='gray' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
}

    select:focus {
        outline: none;
        border-color: #80bdff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

@media (min-width: 768px) {
    .gift-card-input-row {
        flex-wrap: nowrap;
    }

        .gift-card-input-row .form-group {
            min-width: 0;
        }

    .table {
        font-size: 16px;
    }

    .grid-summary {
        font-size: 16px;
    }

    .table th,
    .table td {
        padding: 12px;
    }

    select {
        width: auto;
        min-width: 200px;
    }
}





/* General container styling */
.giftcard-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--background-gray);
}

/* Main content styling */
.giftcard-main-content {
    background: var(--background-gray);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Summary cards */
.giftcard-summary-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.giftcard-summary-card {
    flex: 1;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.giftcard-count, .giftcard-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Table styling */
.giftcard-transactions-table {
    overflow-x: auto;
}

.giftcard-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .giftcard-table th, .giftcard-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .giftcard-table th {
        background: #f1f1f1;
        font-weight: bold;
    }

.giftcard-table-striped tr:nth-child(even) {
    background: #f9f9f9;
}

.giftcard-table-bordered {
    border: 1px solid #ddd;
}

/* Badge styling */
.giftcard-badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.giftcard-bg-success {
    background: #28a745;
    color: #fff;
}

.giftcard-bg-warning {
    background: #ffc107;
    color: #333;
}

/* Button styling */
.giftcard-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.giftcard-btn-sm {
    padding: 6px 10px;
}

.giftcard-btn-info {
    background: #17a2b8;
    color: #fff;
}

.giftcard-btn-secondary {
    background: #6c757d;
    color: #fff;
}

.giftcard-btn-primary {
    background: #007bff;
    color: #fff;
}

.giftcard-btn:hover {
    opacity: 0.9;
}

/* Empty state styling */
.giftcard-empty-state {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

    .giftcard-empty-state h3 {
        margin-bottom: 10px;
    }

    .giftcard-empty-state p {
        margin-bottom: 20px;
        color: #666;
    }

/* Mobile view */
@media (max-width: 768px) {
    .giftcard-container {
        padding: 10px;
    }

    .giftcard-summary-cards {
        flex-direction: column;
        gap: 10px;
    }

    .giftcard-table {
        font-size: 0.9rem;
    }

        .giftcard-table th, .giftcard-table td {
            padding: 8px;
        }

    .giftcard-btn {
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    .giftcard-empty-state {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .giftcard-table th, .giftcard-table td {
        font-size: 0.8rem;
        padding: 6px;
    }

    .giftcard-btn {
        display: block;
        margin: 5px 0;
    }
}

.menu-icon {
    width: 25px;
    height: 25px;
    color: #786aae !important;
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.logout-icon {
    width: 24px; /* adjust size */
    height: 24px;
    color: #786aae !important;
}
