/* Contenedor principal estilo tarjeta premium minimalista */
.eba-booking-card {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
}

/* Títulos de pasos */
.eba-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

/* Campos del formulario */
.eba-form-field {
    margin-bottom: 20px;
}

.eba-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #64748b;
}

/* Inputs con transiciones elegantes */
.eba-input, .eba-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #334155;
    background-color: #f8fafc;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.eba-input:focus, .eba-select:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Contenedor de teléfono con prefijo integrado de forma estética */
.eba-phone-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.eba-phone-prefix {
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    border-right: none;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    user-select: none;
}

.eba-input-phone {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Botonera Premium */
.eba-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.eba-button-primary { background: #2563eb; color: #ffffff; }
.eba-button-primary:hover { background: #1d4ed8; }

.eba-button-secondary { background: #e2e8f0; color: #475569; margin-right: 10px; }
.eba-button-secondary:hover { background: #cbd5e1; }

.eba-button-success { background: #10b981; color: #ffffff; }
.eba-button-success:hover { background: #059669; }

.eba-button:disabled { background: #94a3b8; cursor: not-allowed; }

.eba-button-group {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

/* Adaptación elegante del datepicker incrustado */
.eba-datepicker-widget .ui-datepicker {
    width: 100% !important;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
}

/* Alertas de respuesta del servidor */
.eba-response-box { margin-top: 15px; }
.eba-alert { padding: 12px 16px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; }
.eba-alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.eba-alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }