.elementor-2618 .elementor-element.elementor-element-8621eb2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-abb82fd *//* --- CONTENEDOR PRINCIPAL --- */
.dg-recruitment-detailed {
    margin: 20px auto;
    max-width: 900px;
    font-family: 'Inter', sans-serif;
}

.dg-recruitment-detailed .dg-card {
    background: #141414;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- ENCABEZADO --- */
.dg-recruitment-detailed .dg-header {
    margin-bottom: 25px;
    text-align: center;
}

.dg-recruitment-detailed .dg-subtitle {
    color: #E75A7C; /* Cambiado a Rosa */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.dg-recruitment-detailed .dg-title {
    color: #fff;
    margin: 5px 0 0;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 800;
}

/* --- FORMULARIO DE BÚSQUEDA --- */
.dg-recruitment-detailed .dg-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #E75A7C; /* Borde ahora Rosa */
}

.dg-recruitment-detailed .dg-search-form input {
    flex: 1;
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    padding: 10px !important;
    font-size: 15px !important;
}

.dg-recruitment-detailed .dg-search-form input:focus {
    outline: none !important;
}

.dg-recruitment-detailed .dg-search-form button {
    background: #E75A7C; /* Botón Rosa */
    color: #fff; /* Texto blanco para contraste */
    border: none;
    padding: 0 30px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
}

.dg-recruitment-detailed .dg-search-form button:hover {
    background: #fff;
    color: #E75A7C; /* Al pasar el mouse se invierte */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 90, 124, 0.3);
}

.dg-recruitment-detailed .dg-search-form button:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    transform: none;
}

/* --- GRILLA DETALLADA DE ESTADÍSTICAS --- */
.stats-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item-detailed {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #E75A7C; /* Borde rosa por defecto */
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item-detailed label {
    display: block;
    color: #aaa;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.stat-value-detailed {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Roboto Mono', monospace;
}

/* --- ESTILOS DEL SEMÁFORO (Traffic Light) --- */
/* Los colores de estado (verde, amarillo, rojo) se mantienen para funcionalidad visual */

.stat-item-detailed.status-green {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}
.stat-item-detailed.status-green .stat-value-detailed {
    color: #00ff88;
}

.stat-item-detailed.status-yellow {
    border-color: #ffdd00;
    box-shadow: 0 0 15px rgba(255, 221, 0, 0.15);
}
.stat-item-detailed.status-yellow .stat-value-detailed {
    color: #ffdd00;
}

.stat-item-detailed.status-red {
    border-color: #ff4d4d;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.15);
}
.stat-item-detailed.status-red .stat-value-detailed {
    color: #ff4d4d;
}

/* --- CONTENEDOR DE VERDICTO --- */
.verdict-detailed-container {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.verdict-badge {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    border: 1px solid;
}

/* Especial: Si es APTO, usamos el color rosa de marca si así lo prefieres, 
   o mantenemos el verde de éxito. Aquí lo puse en rosa para resaltar la marca */
.verdict-apt {
    background: rgba(231, 90, 124, 0.1);
    color: #E75A7C;
    border-color: #E75A7C;
}

.verdict-trial {
    background: rgba(255, 221, 0, 0.1);
    color: #ffdd00;
    border-color: #ffdd00;
}

.verdict-reject {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border-color: #ff4d4d;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .dg-recruitment-detailed .dg-search-form {
        flex-direction: column;
        padding: 15px;
    }
    
    .stats-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .dg-recruitment-detailed .dg-search-form button {
        padding: 15px;
        width: 100%;
    }
}/* End custom CSS */