/**
 * Mi Sistema Quinielas - CSS COMPLETO
 * Version: 1.2.2
 */

/* ===== VARIABLES ===== */
:root {
    --msq-primary: #667eea;
    --msq-primary-dark: #514caf;
    --msq-secondary: #f3f4f6;
    --msq-text-color: #2c3e50;
    --msq-border: #e1e8ed;
    --msq-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --msq-radius: 12px;
    --msq-font-family: 'Poppins', sans-serif;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
#msq-sistema-completo {
    font-family: var(--msq-font-family);
    max-width: 1600px;
    margin: 10px auto;
    color: var(--msq-text-color);
    line-height: 1.6;
    padding: 20px;
}

.msq-container {
    background: white;
    padding: 40px;
    border-radius: var(--msq-radius);
    box-shadow: var(--msq-shadow);
    margin-bottom: 30px;
    border: 1px solid var(--msq-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.msq-title {
    color: var(--msq-text-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.msq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--msq-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ===== BOTÓN GUARDAR — ESTADOS DINÁMICOS ===== */

/* Base compartida por todos los estados */
.msq-btn-guardar {
    display: block;
    width: 100%;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    transition: background 0.4s ease,
                color 0.4s ease,
                box-shadow 0.4s ease,
                transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Estado inicial: gris oscuro, bloqueado */
.msq-btn-guardar.msq-estado-inicial,
.msq-btn-guardar:disabled:not(.msq-estado-intermedio):not(.msq-estado-listo) {
    background: #2e3b5e;
    color: #7a8aaa;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 1;
    transform: none;
}

/* Estado intermedio: Azul eléctrico de alta intensidad para denotar progreso */
.msq-btn-guardar.msq-estado-intermedio {
    background: linear-gradient(135deg, #1e293b, #1d4ed8);
    color: #38bdf8;
    cursor: not-allowed;
    box-shadow: 0 0 15px rgba(29, 78, 216, 0.4);
    opacity: 1;
    transform: none;
}

/* Estado final: Verde neón con pulso de escala, ideal para móviles */
.msq-btn-guardar.msq-estado-listo {
    background: linear-gradient(135deg, #00f5a0, #00d9f5);
    color: #0b1020;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 245, 160, 0.4);
    animation: msqBotonPremium 2s ease-in-out infinite;
}

/* El hover frena la animación y agranda el botón al tacto */
.msq-btn-guardar.msq-estado-listo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 245, 160, 0.7),
                0 0 60px rgba(0, 245, 160, 0.3);
    animation: none;
}

/* Animación del botón premium */
@keyframes msqBotonPremium {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 245, 160, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 4px 30px rgba(0, 245, 160, 0.8);
    }
}

/* Estado cargando al enviar */
.msq-btn-guardar.msq-loading {
    background: #667eea;
    color: white;
    cursor: wait;
    animation: none;
}

/* ===== TEXTO DE PROGRESO SOBRE EL BOTÓN (CONTRASTE REPARADO) ===== */

/* Base compartida */
.msq-progreso {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 700; /* Incrementado para dar más cuerpo a los caracteres */
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
    min-height: 34px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* Estado Inicial e Intermedio: Fondo gris claro limpio con texto oscuro */
.msq-progreso.estado-inicial,
.msq-progreso.estado-intermedio {
    color: #0f172a !important; /* Azul oscuro/negro para lectura nítida */
    background: #e2e8f0 !important; /* Fondo gris claro */
    border: 1px solid #cbd5e1 !important;
}

/* Forzar contraste absoluto en las negritas de los estados inicial e intermedio */
.msq-progreso.estado-inicial strong,
.msq-progreso.estado-intermedio strong {
    color: #000000 !important;
    font-weight: 800;
}

/* Estado Listo: Fondo verde pastel suave con texto verde pino ultra oscuro */
.msq-progreso.estado-listo {
    color: #042f1a !important; /* Verde oscuro de alto contraste */
    background: #c6f6d5 !important; /* Fondo pastel suave */
    border: 1px solid #9ae6b4 !important;
    animation: msqTextoPulso 2s ease-in-out infinite;
}

/* Forzar contraste absoluto en las negritas del estado listo */
.msq-progreso.estado-listo strong {
    color: #000000 !important;
    font-weight: 800;
}

/* Animación de pulso suavizada para no comprometer la legibilidad */
@keyframes msqTextoPulso {
    0%   { opacity: 1; }
    50%  { opacity: 0.85; }
    100% { opacity: 1; }
}



/* ===== FORMULARIO ===== */
.msq-form-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(203, 213, 225, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.msq-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #667eea 50%, #514caf 75%, #667eea 100%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.msq-form-container h3,
.msq-form-container h4 {
    color: #334155;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.msq-form-container h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(135deg, var(--msq-primary), var(--msq-primary-dark));
    border-radius: 3px;
}

.msq-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.msq-field-group {
    position: relative;
}

.msq-field-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.msq-field-group input,
.msq-field-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    background: white;
    color: #334155;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.msq-field-group input:focus,
.msq-field-group select:focus {
    outline: none;
    border-color: var(--msq-primary);
    background: #fefefe;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* ===== DISCLAIMER ===== */
.msq-disclaimer-container {
    margin-bottom: 10px;
    padding: 8px 12px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    box-shadow: none;
}

/* FIX: disclaimer compacto en mobile para no empujar el botón fuera de pantalla */
@media (max-width: 480px) {
    .msq-disclaimer-container {
        margin-bottom: 8px;
        padding: 6px 10px;
    }
    .msq-disclaimer-text {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
}

.msq-disclaimer-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    color: #856404;
    gap: 12px;
}

/* ===== FILTROS ===== */
.msq-filtros-container {
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8ed;
}

.msq-filtros-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-end;
}

.msq-filtro-grupo {
    flex: 0 0 auto;
    min-width: 140px;
    max-width: 180px;
}

.msq-filtro-grupo label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
}

.msq-filtro-grupo input,
.msq-filtro-grupo select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
    height: 32px;
}

.msq-filtros-botones {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.msq-btn-filtrar,
.msq-btn-limpiar {
    color: white;
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    height: 32px;
    min-width: 80px;
    font-weight: 600;
    text-transform: uppercase;
}

.msq-btn-filtrar {
    background: #17a2b8;
}

.msq-btn-limpiar {
    background: #6c757d;
}

/* ===== TARJETAS ===== */
.msq-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 20px 0;
    max-width: 1500px;
    margin: 0 auto;
}

.msq-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.msq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.msq-card-winner {
    background: linear-gradient(145deg, #f8fff9, #e8f5e8);
    border-color: #28a745;
}

.msq-card-loser {
    background: linear-gradient(145deg, #fefefe, #f8f9fa);
}

.msq-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid #e9ecef;
}

.msq-card-fecha-container {
        flex-direction: column !important;
        gap: 4px !important;
        width: 100% !important;
    }
    
    .msq-card-fecha {
        font-size: 16px !important;
        text-align: center !important;
        width: 100% !important;
    }

.msq-card-estado-badge {
    width: 100% !important;
    border-radius: 120px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
                 0 4px 8px rgba(0, 0, 0, 0.2);
}

.msq-card-numero-principal {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 16px 8px; /* Menos padding horizontal */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    flex-wrap: nowrap; /* ✅ NO permitir wrap */
    gap: 8px; /* ✅ Espacio entre elementos */
}

.msq-card-numero-jugado,
.msq-card-numero-ganador-container {
    text-align: center;
    flex: 1; /* ✅ Ocupar espacio disponible */
    min-width: 0; /* ✅ Permitir compresión */
}

.msq-card-numero-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.msq-card-numero-value {
    display: block;
    font-size: clamp(16px, 4vw, 32px);
    font-weight: 900;
    font-family: 'Courier New', monospace;
    word-break: normal;
    white-space: nowrap;
}

.msq-card-cifras-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 8px;
    backdrop-filter: blur(10px);
}

.msq-card-versus {
    font-size: 20px;
    font-weight: 900;
    color: #ffd700;
}

.msq-card-ganador-numero {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #ffd700;
    font-family: 'Courier New', monospace;
}

.msq-card-ganador-oculto {
    font-size: 16px;
    font-weight: 700;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.2);
    padding: 8px;
    border-radius: 8px;
}

.msq-card-ganador-vacio {
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
}

.msq-card-body {
    padding: 16px;
}

.msq-card-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.msq-card-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(108, 92, 231, 0.05);
    border-radius: 12px;
    border-left: 3px solid #6c5ce7;
}

.msq-card-icon {
    font-size: 18px;
}

.msq-card-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
}

.msq-card-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #212529;
}

.msq-ganancia-positiva {
    color: #28a745 !important;
    font-weight: 900 !important;
}

.msq-card-verificador-container {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.msq-card-verificador-badge {
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.msq-card-footer {
    padding: 12px 16px;
    background: rgba(248, 249, 250, 0.7);
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
}

.msq-btn-eliminar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.msq-card-loser .msq-btn-action {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #ced4da;
    color: #6c757d;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.msq-btn-icon {
    font-size: 14px;
}

/* ===== PAGINACIÓN ===== */
.msq-paginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 25px;
    flex-wrap: wrap;
}

.msq-btn-pag {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    color: #495057;
    min-width: 44px;
    height: 44px;
}

.msq-btn-pag.msq-activo {
    background: var(--msq-primary);
    color: white;
}

.msq-info-paginacion {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #6c757d;
}

.msq-loading {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.msq-no-registros {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    color: #6c757d;
    font-size: 18px;
}

.msq-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

/* ===== RESPONSIVE MÓVIL ===== */
@media (max-width: 768px) {
    #msq-sistema-completo {
        padding: 10px !important;
    }
    
    .msq-container {
        padding: 15px !important;
    }
    
    .msq-cards-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 10px !important;
    }
    
    .msq-card {
        margin: 0 !important;
    }
    
    .msq-card-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .msq-card-numero-principal {
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 12px 8px !important;
}
    
    .msq-card-versus {
        font-size: 18px !important;
        transform: rotate(0deg) !important;
    }
    
    .msq-card-body {
        padding: 12px !important;
    }
    
    .msq-card-info-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .msq-card-info-item {
        flex-direction: column;
        text-align: center;
        padding: 8px !important;
    }
    
    .msq-form-container {
        padding: 20px 15px !important;
    }
    
    .msq-form-row {
        grid-template-columns: 1fr !important;
    }
    
    .msq-filtros-row {
        flex-direction: column;
    }
    
    .msq-filtro-grupo {
        min-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .msq-card-numero-value,
    .msq-card-ganador-numero {
        font-size: clamp(14px, 6vw, 28px) !important;
    }
    
    .msq-card-value {
        font-size: 15px !important;
    }
}

/* ===== CARTEL DE INFORMACIÓN DE JUGADAS ===== */
.msq-jugadas-contador {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.msq-jugadas-contador::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
}

.msq-jugadas-contador-contenido {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.msq-jugadas-numero {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
}

.msq-plan-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin: 0 4px;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.msq-upgrade-link {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.msq-upgrade-link a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.msq-upgrade-link a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Barra de progreso */
.msq-progreso-container {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.msq-progreso-barra {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.msq-progreso-texto {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .msq-jugadas-contador {
        padding: 15px 20px;
    }
    
    .msq-jugadas-contador-contenido {
        font-size: 14px;
    }
    
    .msq-jugadas-numero {
        font-size: 16px;
    }
}


/* ESTILOS FUTURISTA DEL SHORTCODES ESTADÍSTICAS */
/* ============================= */

/* 1. CONTENEDOR MAESTRO (El "Display" de 500px) */
.msq-futurist-stats {
    background: #ffde8a;
    background: linear-gradient(145deg, #0d0b1f, #161336);
    border-radius: 16px;
    padding: 16px;
    margin: 10px auto;
    max-width: 500px;
    height: 500px; /* Tu límite de altura */
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto; /* Scroll interno si sobran filas */
    position: relative;
}

/* 2. LA GRILLA (Lista vertical) */
.msq-stats-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Una sola columna siempre */
    gap: 10px !important;
}

/* 3. FILA DE MÉTRICA (Tu código optimizado) */
.msq-stat-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    min-height: 48px !important;
    background: rgba(255, 255, 255, 0.035);
    border-left: 3px solid #00d9ff; /* Color por defecto: Azul */
    border-radius: 6px;
    transition: transform 0.2s;
}

.msq-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

/* 4. TEXTOS (Tu código optimizado) */
.msq-stat-label {
    font-size: 0.85rem !important;
    font-weight: 500;
    color: #a8accf;
    margin: 0 !important;
}

.msq-stat-number {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: #00d9ff;
    margin: 0 !important;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.35);
}

/* 5. VARIACIONES DE COLOR (Para que sea profesional) */

/* Filas de Éxito / Aciertos (Verde) - Usualmente la 2da */
.msq-stat-card:nth-child(2) { border-left-color: #00ff9d; }
.msq-stat-card:nth-child(2) .msq-stat-number { color: #00ff9d; }

/* Filas de Porcentaje / ROI (Rosa) - Usualmente la 3ra y 6ta */
.msq-stat-card:nth-child(3), 
.msq-stat-card:nth-child(6) { border-left-color: #ff4d7c; }
.msq-stat-card:nth-child(3) .msq-stat-number, 
.msq-stat-card:nth-child(6) .msq-stat-number { color: #ff4d7c; }

/* Limpieza de elementos basura */
.msq-stat-icon, .msq-stat-desc, .msq-stat-card::before, .msq-particles {
    display: none !important;
}

/* Scrollbar sutil para el panel */
.msq-futurist-stats::-webkit-scrollbar { width: 4px; }
.msq-futurist-stats::-webkit-scrollbar-thumb { background: #2a2a40; border-radius: 10px; }

#msq-mensaje-resultado {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    clear: both;
}

.msq-mensaje-exito {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.msq-mensaje-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.msq-mensaje-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}
