/* Rental System Styles */

.selena-rental-options {
    margin: 20px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.selena-rental-options h3 {
    margin-top: 0;
    color: #FF0080;
    font-size: 18px;
}

.rental-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF0080;
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.1);
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.form-group label input[type="checkbox"],
.form-group label input[type="radio"] {
    cursor: pointer;
}

.info-box {
    background: #dbeafe;
    padding: 10px 12px;
    border-radius: 4px;
    color: #1e40af;
    border-left: 4px solid #0ea5e9;
    font-size: 14px;
}

.rental-price-summary {
    background: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.price-row span:last-child {
    font-weight: 600;
    color: #333;
}

.price-row.total {
    font-weight: bold;
    font-size: 16px;
    border-bottom: none;
    border-top: 2px solid #FF0080;
    padding-top: 10px;
    margin-top: 10px;
    color: #FF0080;
}

.rental-price-summary small {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .selena-rental-options {
        padding: 15px;
    }
    
    .rental-form {
        gap: 12px;
    }
}
