/* Main Container */
.wc-agendamento-form {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px; /* Standard WP/WC radius */
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

/* Headings */
.wc-agendamento-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: inherit;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Form Rows */
.wc-agendamento-form .form-row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.wc-agendamento-form .form-row:last-child {
    margin-bottom: 0;
}

/* Labels */
.wc-agendamento-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.4;
}

.wc-agendamento-form label .required {
    color: #e2401c; /* Standard required color */
    text-decoration: none;
    font-weight: 700;
}

/* Inputs */
.wc-agendamento-form input[type="text"],
.wc-agendamento-form select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    font-size: 16px; /* Prevents zoom on mobile */
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.wc-agendamento-form input[type="text"]:focus,
.wc-agendamento-form select:focus {
    border-color: #007cba; /* Standard WP Focus Color */
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.wc-agendamento-form select:disabled {
    background-color: #f0f0f1;
    color: #a0a5aa;
    cursor: not-allowed;
}

/* Responsive tweaks */
@media screen and (min-width: 768px) {
    .wc-agendamento-form .form-row-group {
        display: flex;
        gap: 20px;
    }
    
    .wc-agendamento-form .form-row-group .form-row {
        flex: 1;
        margin-bottom: 0;
    }
}
