html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

/* Menu Button Styling */
.menu-button {
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
    margin: 1rem auto; /* Increased margin between buttons */
    width: 100%; /* Default full width */
    height: 150px; /* Fixed button height */
}

/* Width Adjustment for Different Screen Sizes */
@media (min-width: 768px) { /* Medium screens */
    .menu-button {
        width: 65%;
    }
}

@media (min-width: 1024px) { /* Large screens */
    .menu-button {
        width: 45%;
    }
}

/* Centering Content Inside Buttons */
.menu-button div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hover Effect */
.menu-button:hover {
    transform: scale(1.05);
}

/* Assigning Colors to Buttons */
.menu-button:nth-child(1) {
    background-color: #3B82F6;
}
/* Blue */
.menu-button:nth-child(2) {
    background-color: #10B981;
}
/* Green */
.menu-button:nth-child(3) {
    background-color: #F59E0B;
}
/* Yellow */
.menu-button:nth-child(4) {
    background-color: #EF4444;
}
/* Red */
.menu-button:nth-child(5) {
    background-color: #8B5CF6;
}
/* Purple */
.menu-button:nth-child(6) {
    background-color: #6366F1;
}
/* Indigo */

/* Icon Styling */
.icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-button {
        flex-direction: column;
        text-align: center;
    }

    .icon {
        margin-bottom: 0.5rem;
    }
}



.purchase-link-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: none;
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
    border-radius: 10px;
    text-align: center;
}

.purchase-link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 25px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .purchase-link-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

.purchase-link-button-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.purchase-link-button-icon {
    width: 50px;
    height: 50px;
    margin: auto 25px;
}






/* =========================================================
   SALES HEADER
   ========================================================= */

.sales-header {
    margin-bottom: 16px;
}

/* Bold title */
.sales-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    color: #111827;
}

/* Transaction ref bar */
.transaction-ref-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
}

    /* Label */
    .transaction-ref-bar .label {
        font-weight: 600;
        color: #6b7280;
    }

    /* Value */
    .transaction-ref-bar .value {
        font-weight: 900;
        font-size: 16px;
        letter-spacing: 0.5px;
        color: #2563eb;
    }

    .transaction-ref-bar.success {
        border-color: #16a34a;
        background: #ecfdf5;
    }

        .transaction-ref-bar.success .value {
            color: #16a34a;
        }

    .transaction-ref-bar.outstanding {
        border-color: #d97706;
        background: #fff7ed;
    }

        .transaction-ref-bar.outstanding .value {
            color: #d97706;
        }
