/* Estilos para el panel de administración de Telegram */
.sidebar {
    width: 280px;
    background-color: #212529;
}

.bot-selector.active {
    background-color: #0d6efd;
    color: white;
    border-radius: 0.375rem;
}

.main-content {
    overflow-y: auto;
    background-color: #343a40;
}

.stat-card {
    background-color: #2c3034;
    border-radius: 0.5rem;
    border: 1px solid #495057;
}

.nav-tabs .nav-link { color: #adb5bd; }
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #495057;
    border-color: #495057 #495057 #fff;
}

/* --- Mobile Redesign --- */
.mobile-wrapper {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

#mobile-views-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #343a40;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
}

.mobile-view.hidden {
    transform: translateX(100%);
}

.mobile-header {
    flex-shrink: 0;
    background-color: #212529;
}

.mobile-content {
    flex-grow: 1;
    overflow-y: auto;
}
