:root {
    --cecocq-primary: #3498db;
    /* Azul Principal - Cambiar aquí */
    --cecocq-secondary: #2c3e50;
    /* Azul Oscuro / Texto */
    --cecocq-success: #27ae60;
    /* Verde Éxito */
    --cecocq-gray: #95a5a6;
    /* Gris */
    --cecocq-light-gray: #eee;
    --cecocq-white: #ffffff;
}

#cecocq-booking-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border: 1px solid var(--cecocq-light-gray);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: var(--cecocq-white);
}

.cecocq-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.step {
    color: #aaa;
    font-weight: bold;
    font-size: 0.9em;
}

.step.active {
    color: var(--cecocq-secondary);
    border-bottom: 2px solid var(--cecocq-primary);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Psychologist Cards */
.psychologist-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.psychologist-card {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.psychologist-card:hover {
    background: #f9f9f9;
}

.psychologist-card input {
    margin-right: 15px;
}

.psychologist-card h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.psychologist-card p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

/* Slots */
.slot-btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background: var(--cecocq-white);
    border: 1px solid var(--cecocq-primary);
    color: var(--cecocq-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.slot-btn:hover,
.slot-btn.selected {
    background: var(--cecocq-primary);
    color: var(--cecocq-white);
}

/* Form Inputs */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Buttons */
button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: opacity 0.2s;
}

button:hover {
    opacity: 0.9;
}

button.next-step,
button.submit-btn {
    background: var(--cecocq-success);
    color: white;
}

button.prev-step {
    background: var(--cecocq-gray);
    color: white;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-messages {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

.form-messages.success {
    color: var(--cecocq-success);
}

.form-messages.error {
    color: #e74c3c;
}