/* static/includes/css/sidebar.css */

/* ===== БОКОВАЯ ПАНЕЛЬ ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    background: linear-gradient(to bottom right, #393eb4 85%, #a439b4 85%);
    color: #333333;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    border-right: 1px solid #e0e0e0;
}

.sidebar-header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-logo {
    max-width: 180px;
    height: auto;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    border-radius: 8px;
    margin: 0 8px;
    width: calc(100% - 16px);
}

.sidebar-link i {
    width: 22px;
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(216, 228, 240, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.sidebar-link:hover i {
    color: #ffffff;
}

.sidebar-link.active {
    background: linear-gradient(to bottom right, #d8e4f0 0%, #e0e4f0 50%, #e8e4f0 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(216, 228, 240, 0.3);
}

.sidebar-link.active i {
    color: #1a1a2e;
}

.sidebar-logout {
    margin-top: auto;
    color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
    border-radius: 8px;
    margin: 8px;
    width: calc(100% - 16px);
}

.sidebar-logout:hover {
    background: rgba(220, 53, 69, 0.6);
    color: #ffffff;
}

.sidebar-logout:hover i {
    color: #ffffff;
}

.sidebar-logout.active {
    background: linear-gradient(to bottom right, #d8e4f0 0%, #e0e4f0 50%, #e8e4f0 100%);
    color: #1a1a2e;
}

.sidebar-logout.active i {
    color: #1a1a2e;
}

.sidebar-link:focus,
.sidebar-link:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Имя пользователя внизу боковой панели */
.sidebar-user {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
    font-size: 13px;
    min-height: 48px;
    line-height: 1.2;
}

.sidebar-user i {
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, #d8e4f0 0%, #e0e4f0 50%, #e8e4f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-user span {
    font-weight: 600;
    display: inline-block;
    line-height: 1.2;
    background: linear-gradient(to bottom right, #d8e4f0 0%, #e0e4f0 50%, #e8e4f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
