.dashboard-page {
    height: 100vh;
}

.dashboard-page > main {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.page > main > .content {
    flex: 1;
    overflow: hidden;
    padding: 0;
}

.dashboard-container{
    display: flex;
    height: 100%;
    justify-content: space-between;
    gap: 10px;
    padding-right: 10px;
}

.dashboard-side-menu {
    width: 18%;
    height: 100%;
    background: rgb(33, 37, 41);
    overflow-y: auto;
}

.logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.side-menu-item {
    display: flex;
    align-items: center;
    height: 52px;
    margin: 8px 0;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.side-menu-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
}

.side-menu-item.active {
    background: #EA3323;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}


.dashboard-content {
    width: 80%;
    height: 100%;
    overflow-y: auto;
}