.quotation-status label {
    display: block;
    margin: 10px 0 5px;
}

.toggle-switch {
    display: inline-flex;
    align-items: center;
    width: 60px;
    height: 28px;
    position: relative;
    background-color: #ddd;
    border-radius: 15px;
    cursor: pointer;
}

.toggle-switch input[type="radio"] {
    display: none;
}

.toggle-option {
    flex: 1;
    text-align: center;
    color: #666;
    line-height: 28px;
    font-size: 14px;
    transition: color 0.3s;
}

.toggle-switch input[type="radio"]:checked + .toggle-option {
    color: #fff;
    background-color: #4caf50;
    border-radius: 15px;
}

/* For "Yes" style */
.toggle-switch #quotation-sent-yes:checked + label[for="quotation-sent-yes"],
.toggle-switch #quotation-accepted-yes:checked + label[for="quotation-accepted-yes"],
.toggle-switch #quotation-paid-yes:checked + label[for="quotation-paid-yes"] {
    background-color: #4caf50;
    color: #fff;
}

/* For "No" style */
.toggle-switch #quotation-sent-no:checked + label[for="quotation-sent-no"],
.toggle-switch #quotation-accepted-no:checked + label[for="quotation-accepted-no"],
.toggle-switch #quotation-paid-no:checked + label[for="quotation-paid-no"] {
    background-color: #f44336;
    color: #fff;
}

.quotation-status {
    margin: 50px 0 50px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quotation-status label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.quotation-status select {
    padding: 5px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#create-booking-btn {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: not-allowed;
    opacity: 0.6;
}

#create-booking-btn:enabled {
    cursor: pointer;
    opacity: 1;
}