/* Bot Post-Litotripsia - Estilos específicos */

/* Colores temáticos para litotripsia */
.bot-card-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d8b84 100%);
}

.bot-logo-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Formulario de registro */
.bot-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Info boxes específicas */
.bot-info-box {
    background: #e8f5f3;
    border-left-color: var(--color-primary);
}

/* Opciones urgentes */
.bot-op-btn.bot-op-urgente {
    border-color: #f59e0b;
    color: #92400e;
}

.bot-op-btn.bot-op-urgente:hover {
    background: #fef3c7;
    border-color: #f59e0b;
}

/* Alerta flotante */
.bot-alerta-flotante {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}
