/* ================================
   PITIUPI PRESENTATION - SLIDE 12 STYLES
   Admin Calculator (Dashboard)
   ================================ */

   .slide[data-slide="12"] {
    padding: 1rem !important;
}

.slide-12-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 2rem;
    gap: 1rem;
}

.admin-title {
    font-size: 3rem;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(160, 32, 240, 0.5); /* Morado Admin */
}

.admin-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

/* ================================
   DASHBOARD CONTAINER
   ================================ */
.admin-dashboard {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    align-items: stretch;
    height: 60vh;
}

/* --- Panel Izquierdo: Controles --- */
.admin-controls {
    flex: 1.2;
    background: rgba(15, 10, 30, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(160, 32, 240, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.control-section h3 {
    font-size: 1.1rem;
    color: #d8b4fe;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    text-align: left;
}

.input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.a-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.a-input-group label {
    font-size: 0.8rem;
    color: #a0aec0;
    font-weight: 700;
    text-transform: uppercase;
}

.a-input-group input[type="range"] {
    width: 100%;
    accent-color: #a855f7; /* Morado */
}

.a-input-group input[type="number"] {
    background: rgba(0,0,0,0.3);
    border: 1px solid #555;
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
}

.a-val {
    text-align: right;
    color: #a855f7;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Selector de Niveles */
.level-selector {
    margin-top: 1rem;
}

.level-btns {
    display: flex;
    gap: 1rem;
}

.lvl-btn {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid #555;
    border-radius: 10px;
    padding: 1rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.lvl-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
}

.lvl-btn.active {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.lvl-name { font-weight: 700; color: #fff; margin-bottom: 0.3rem; font-size: 0.9rem; }
.lvl-per { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; color: #fff; font-weight: 900; }

/* --- Panel Derecho: Resultados --- */
.admin-results {
    flex: 0.8;
    background: linear-gradient(145deg, #1e1b4b, #312e81); /* Indigo profundo */
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4338ca;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admin-results::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
}

.revenue-header {
    font-size: 0.9rem;
    color: #a5b4fc;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.monthly-revenue {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
    margin-bottom: 2rem;
    line-height: 1;
}

.revenue-details {
    width: 100%;
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rev-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.rev-item:last-child { border-bottom: none; padding-bottom: 0; }

.rev-item span:last-child {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
}

.highlight-txt { color: #a855f7 !important; font-weight: 700; }

.admin-note {
    margin-top: auto;
    font-size: 0.8rem;
    color: #6366f1;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .admin-dashboard { flex-direction: column; height: auto; }
    .monthly-revenue { font-size: 3rem; }
}