#rd-checkout-calendar-wrap {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

#rd-checkout-calendar-wrap h3 {
    margin-top: 0;
    color: #333;
}

#rd_delivery_date_field {
    background: white;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#rd-checkout-calendar {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

#rd-checkout-calendar .ui-datepicker {
    width: 100%;
}

#rd-checkout-calendar .ui-datepicker-calendar td.rd-allowed a { 
    background: #4CAF50 !important; 
    color: #fff !important; 
    border-radius: 50%;
}

#rd-checkout-calendar .ui-datepicker-calendar td.rd-notallowed a { 
    opacity: 0.2; 
    position: relative; 
    cursor: not-allowed;
}

#rd-checkout-calendar .ui-datepicker-calendar td.rd-notallowed:after {
    content: "✖";
    color: #fff;
    background: #e53935;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    right: 4px;
    top: 4px;
}

.rd-delivery-city-field {
    margin: 15px 0;
}

.rd-delivery-city-field select {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.rd-field-description {
    color: #666;
    font-style: italic;
    font-size: 13px;
    margin-top: 5px;
}

/* Stiluri pentru responsive */
@media (max-width: 768px) {
    #rd_delivery_date_field,
    .rd-delivery-city-field select {
        max-width: 100%;
    }
    
    #rd-checkout-calendar {
        margin: 10px 0;
    }
}