/* Dhru Service Fields - GsmGenesis style layout */
.dhru-service-fields {
    margin: 20px 0 15px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    clear: both;
}

.dhru-fields-title {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.dhru-field-group {
    margin-bottom: 14px;
}
.dhru-field-group:last-child {
    margin-bottom: 5px;
}

.dhru-field-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.dhru-required {
    color: #dc2626;
    font-weight: 700;
}

.dhru-field-input {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.dhru-field-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

select.dhru-field-input {
    appearance: auto;
    cursor: pointer;
}

textarea.dhru-field-input {
    resize: vertical;
    min-height: 60px;
}

.dhru-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.dhru-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: border-color 0.2s;
}
.dhru-radio-label:hover {
    border-color: #3b82f6;
}

.dhru-field-input:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
}
