body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #fff;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}


.left {
    height: fit-content;
    background-color: #1c1c1e;
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.right {
    background-color: #1c1c1e;
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-weight: bold;
    font-size: 1rem;
    margin: 1.5rem 0 1rem;
    color: #aaa;
    text-align: center;
}

.payment-methods {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.payment-methods label {
    display: flex;
    align-items: center;
    background-color: #2a2a2c;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.payment-methods input[type="radio"] {
    margin-right: 5rem;
}

.payment-methods .fab,
.payment-methods .fas {
    margin-right: 1.5rem;
}

.payment-methods span {
    padding-left: 0;
}

.amount-box {
    background-color: #222;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: auto;
}

.amount-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #00ff99;
}

.note {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
}


select {
    width: 100%;
    padding: 0.75rem;
    background-color: #2a2a2c;
    border: none;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
}

input[type="text"] {
    padding: 0.75rem;
    background-color: #2a2a2c;
    border: none;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
    width: calc(100% - 1.5rem);
}

input[type="email"] {
    padding: 0.75rem;
    background-color: #2a2a2c;
    border: none;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
    width: calc(100% - 1.5rem);
}


.apply-btn,
.pay-btn {
    padding: 0.75rem 1.5rem;
    background-color: #0066ff;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
    width: 100%;
}

.apply-btn {
    background-color: #444;
    margin-left: 0;
    width: auto;
    margin-right: 1rem;
}

.pay-btn:hover {
    background-color: #0050cc;
}

.right .pay-btn {
    margin-top: 2rem;
}

.coupon-container {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.copy-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.copy-wrapper input[type="text"] {
    flex: 1;
    padding: 1rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.copy-wrapper input[type="email"] {
    flex: 1;
    padding: 1rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.copy-btn {
    margin-top: -15px;
    padding: 12px 12px;
    font-size: 1rem;
    background-color: #2a2a2c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.copy-btn:hover {
    background-color: #0056b3;
}



/* header styles */
/* Page Header Styling */
.page-header {
    /* width: 100%;  */
    padding: 20px 20px;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc; /* Set text color to light gray */
}

.page-body {
    margin: 0 auto;         /* centers the box horizontally */
    text-align: center;     /* centers the text inside */
    max-width: 800px;       /* optional: prevents text from stretching too wide */
    width: auto;
    color: #ccc; /* Set text color to light gray */
}

.page-body h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ccc; /* Set text color to light gray */
}

.page-body p {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
}
.small {
    color: #aaa;
    font-size: small;
}

.medium {
    color: #aaa;
    font-size: medium;
}

.large {
    color: #aaa;
    font-size: large;
}



#countdown-wrapper {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 12px 16px;
    margin: 20px auto;
    text-align: center;
    font-size: 1.1rem;
    border: 1px solid #444;
    border-radius: 5px;
    max-width: 400px;
}
#countdown {
    font-weight: bold;
    color: #ff6b6b;
}

/* Confirmation Modal Styles */

.cm-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.cm-modal-box {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.cm-modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cm-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight:;
    cursor: pointer;
}

.cm-btn-yes {
    background-color: #28a745;
    color: #fff;
}

.cm-btn-cancel {
    background-color: #dc3545;
    color: #fff;
}


/* Mobile Responsiveness */
@media (max-width: 600px) {
    .cm-modal-box {
        width: 70%;
        padding: 20px;
        font-size: 16px;
    }
    .copy-wrapper input[type="email"] {
        flex: 1;
        padding: 1rem;
        font-size: 0.9rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    .copy-wrapper-i {
        padding: 0.75rem;
        background-color: #2a2a2c;
        border: none;
        border-radius: 5px;
        margin-bottom: 1rem;
        color: white;
        font-size: 1rem;
        width: calc(100% - 1.5rem);
    }
}


/* Fixed Logout Button */

.fixed-logout-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #00ff99;
    color: #000;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.fixed-logout-btn:hover {
    background-color: #00cc7a;
}

.error {
    color: #ff6b6b;
    font-size: 0.9rem;
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.modal-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-actions .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.modal-actions .confirm {
    background-color: #28a745;
    color: #fff;
}

.modal-actions .cancel {
    background-color: #dc3545;
    color: #fff;
}

.minus {
    font-size: 1.2rem;
    color: #888; 
    margin-top: -10px;
}

.blue {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00f;
}




/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-body h1 {
        font-size: 1.6rem;
    }

    .page-body p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        /* width: 100%; */
        padding: 1rem;
    }

    .left-align {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .left,
    .right {
        width: 100%;
        box-sizing: border-box;
    }

    .coupon-container {
        flex-direction: column;
        align-items: stretch;
    }

    .apply-btn {
        margin-top: 1rem;
        margin-right: 0;
        width: 100%;
    }
}