/* ============================================= */
/* Modales - Client Form Modal Styles            */
/* ============================================= */

/* Custom Modal Styles */
.custom-modal-design .modal-content {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.custom-modal-design .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-modal-design .modal-title {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0;
}

.custom-modal-design .close {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: none;
    opacity: 1;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.custom-modal-design .close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.custom-modal-design .modal-body {
    padding: 2rem 1.5rem;
}

.custom-modal-design .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.custom-modal-design .form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.custom-modal-design .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    padding: 0.75rem 1rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-modal-design .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
    color: #ffffff;
}

.custom-modal-design .form-control:focus+label,
.custom-modal-design .form-group:focus-within label {
    color: #4CAF50;
}

.custom-modal-design .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    justify-content: center;
}

.custom-modal-design .btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.custom-modal-design .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #5dbf61 0%, #4CAF50 100%);
}

.custom-modal-design .btn-primary:active {
    transform: translateY(1px);
}

/* Required Field Asterisk */
.campo-requerido {
    color: #ff4d4d;
}

/* ============================================= */
/* Index - Inline Style Replacements             */
/* ============================================= */

/* Proximamente icon size */
.proximamente-icon {
    font-size: 5rem;
}

/* Proximamente description */
.proximamente-descripcion {
    font-size: 1.2rem;
}

/* Estado badge overlay */
.estado-badge-overlay {
    background: rgba(255, 255, 255, 0.1);
}

/* Estado badge size */
.estado-badge-size {
    font-size: 1rem;
}

/* WhatsApp social icon color */
.social-icon.whatsapp {
    background-color: #25D366;
}

/* ============================================= */
/* Ticket Counter (from juegoClass output)       */
/* ============================================= */

.ticket-counter {
    background-color: #2a2e35;
    border: 1px solid #3a3f48;
    transition: all 0.3s ease;
}

.ticket-counter-icon {
    color: #fff;
    font-size: 1rem;
}

.ticket-counter-text {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}