    /* Pop-up Modal Styles */
    .cbn-modal {
        display: none; 
        position: fixed; 
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.6);
    }

    .cbn-modal-content {
        background-color: #fefefe;
        margin: 10% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 500px;
        border-radius: 8px;
        position: relative;
    }

    .cbn-close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .cbn-close:hover,
    .cbn-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    /* Form and Car Info Styles */
    .cbn-car-info {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .cbn-car-info img {
        max-width: 150px;
        margin-right: 20px;
        border-radius: 4px;
    }
    
    #cbn-buy-now-form input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
    }

    /* Confirmation Page Styles */
    .cbn-confirmation-container {
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    