/*
 * ГЛОБАЛЬНЫЕ стили для UXBox.RU
 */

body {
    background-color: #1a1c24; 
    color: #e9e9e9; 
    font-family: 'Exo 2', sans-serif; /* ИЗМЕНЕНО: Базовый шрифт */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif; /* ИЗМЕНЕНО: Шрифт заголовков */
}

.text-primary { color: #00f2ff !important; }

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    background: #12141a;
    color: #fff;
    transition: all 0.3s;
    border-right: 1px solid #2a2d39;
}

.sidebar .sidebar-header {
    padding: 20px;
    background: #0e1015;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.sidebar .nav-link {
    padding: 10px 20px;
    font-size: 1.1em;
    color: #ced4da;
    display: block;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    color: #fff;
    background: #1a1c24;
    border-left-color: #00f2ff;
}

.sidebar .nav-link.active {
    color: #fff;
    background: #1a1c24;
    border-left-color: #00f2ff;
}

.sidebar .nav-link i {
    margin-right: 10px;
    color: #00f2ff; /* ИЗМЕНЕНО: Иконки теперь неоновые */
}

.content-wrapper {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ИЗМЕНЕНО: Стили для футера */
.footer {
    border-top: 1px solid rgba(0, 242, 255, 0.2) !important;
}
.footer .text-muted {
    color: #888 !important;
    transition: color 0.3s ease;
}
.footer .text-muted:hover {
    color: #e0e0e0 !important;
}

@media (max-width: 768px) {
    .sidebar {
        margin-left: -250px;
    }
    .sidebar.active {
        margin-left: 0;
    }
}
