 body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-image: url('zeventes24back.png');
        color: white;
        /* height: 100vh; */
        /* overflow-y: auto; */
        background-repeat: no-repeat;
        background-size: cover;
    }

    #final_confirm{
        display: flex;
        border-radius: 25px;
        flex-direction: column;
        /* flex-wrap: wrap; */
        justify-self: center;
        top: 50%;
        text-align: center;
        background-color: #111;
        /* left: auto; */
        margin: 10px;
        position: absolute;
        width: 94vw;
        border: 15px solid #0f4fc8b6;
        height: auto;
    }
    #confirm_btn{
        background-color: #007bff;
        height: 50px;
        margin: 20px;
        color: white;
        border-radius: 25px;
    }

   

    #txt_notice{
        text-align: center;
        margin: 20px;
    }
    td #txt_b_nums{
        color: #024715;
        /* color: #353836a1; */
        font-size: medium;
    }
    #log_co_div{
        width: inherit;
        display: flex;
        height: inherit;
    }
    #log_co_div #logo{
        width: 160px;
        margin: 5px;
        /* display: flex; */
        height: 40px;
    }
    #txt_reel_p{
        font-size: xx-large;
        margin-left: 10px;
    }
    .container {
        display: flex;
        flex-wrap: wrap;
        padding: 20px;
        gap: 20px;
        justify-content: center;
    }
    .left-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #111;
        border-radius: 12px;
        padding: 10px;
    }
    .left-section img {
        border-radius: 12px;
        max-width: 300px;
    }
    .video-btn {
        margin-top: 10px;
        background-color: #222;
        border: none;
        padding: 8px 16px;
        border-radius: 8px;
        color: white;
        cursor: pointer;
    }
    .middle-section, .right-section {
        background-color: #111;
        border-radius: 12px;
        padding: 20px;
        flex: 1;
        min-width: 280px;
    }
    h2 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    .input-group {
        margin-bottom: 15px;
    }
    .input-group label {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 5px;
    }
    .selection {
        display: flex;
        align-items: center;
    }
    .selection button {
        background-color: #222;
        border: none;
        color: white;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1rem;
    }
    .selection span {
        flex: 1;
        text-align: center;
        background-color: #000;
        padding: 8px;
        border-radius: 4px;
        white-space: nowrap;
    }
    input[type="text"] {
        width: 100%;
        padding: 8px;
        border-radius: 4px;
        border: none;
        background-color: #000;
        color: white;
        margin-bottom: 10px;
    }
    .price {
        margin-top: 10px;
        font-size: 1rem;
    }
    .price span {
        color: lime;
    }
    .pay-btn {
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        margin-top: 10px;
    }
    .analytics table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }
    .analytics th, .analytics td {
        text-align: left;
        padding: 5px;
        font-size: 0.9rem;
    }
    .analytics th {
        color: #1e90ff;
    }
    .note {
        font-size: 0.8rem;
        margin-top: 10px;
        color: #ccc;
    }

    /* MODAL STYLES */
    .modal-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.7);
        display: none;
        align-items: center;
        justify-content: center;
    }
    .modal {
        background: #111;
        padding: 20px;
        border-radius: 12px;
        width: 300px;
        text-align: center;
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
        animation: fadeIn 0.3s ease-in-out;
    }
    .modal h3 {
        margin-bottom: 15px;
    }
    .modal p {
        margin: 8px 0;
    }
    .modal button {
        margin: 8px;
        padding: 8px 14px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }
    .confirm-btn {
        background: limegreen;
        color: white;
    }
    .cancel-btn {
        background: crimson;
        color: white;
    }

    /* LOADING SPINNER */
    .spinner {
        border: 4px solid rgba(255, 255, 255, 0.2);
        border-left-color: lime;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 20px auto;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }

    @media (max-width: 768px) {
        
    #log_co_div{
        width: 300px;
        display: flex;
        height: inherit;
    }
    #date_con{
        display: flex;
        flex-direction: column;
    }
    #final_confirm{
        display: flex;
        border-radius: 25px;
        /* flex-wrap: wrap; */
        /* justify-self: center; */
        top: 50%;
        text-align: center;
        background-color: #111;
        /* left: auto; */
        margin: 10px;
        font-size: small;
        text-size-adjust: inherit;
        position: absolute;
        width: auto;
        border: 15px solid #0f4fc8b6;
        height: auto;
    }
    }