/* Delivery Information Modal Styles */
.modal_history_available_after_registration .modal-dialog {
    max-width: 900px;
}

.modal_history_available_after_registration .delivery-modal {
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    font-family: 'Involve', sans-serif;
    font-weight: 100;
}

.modal_history_available_after_registration .delivery-modal .item{
    padding: 10px 0px;
}

.modal_history_available_after_registration .delivery-modal .modal-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    color: #333;
    width: 100%;
}

.modal_history_available_after_registration .delivery-modal .btn-close:hover {
    color: #333;
}

.modal_history_available_after_registration .delivery-modal img{
    width: 100%;
}

.modal_history_available_after_registration .delivery-modal a{
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background-color: #ED8C33;
    color: black;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 100;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    

}

/* Responsive Design */
@media (max-width: 768px) {
    .modal_history_available_after_registration .delivery-modal .modal-body {
        padding: 15px 20px;
    }
    
    .modal_history_available_after_registration .delivery-modal .modal-header {
        padding: 15px 20px 10px;
    }
        
    .modal_history_available_after_registration .delivery-modal .transport-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal_history_available_after_registration .checkbox-group {
        gap: 15px;
    }
}




