html, body {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5ff;
    height: 100vh;
}

.dashboardLayout {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 240px;
    background: #0000ff;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.sidebarLogo {
    padding: 24px;
    font-size: 28px;
    color: #09ff00;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebarMenu {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.menuItem {
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 16px;
    transition: 0.2s;
}

.menuItem:hover {
    background: rgba(9, 255, 0, 0.2);
    color: #09ff00;
}

.mainContent {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 32px;
    overflow-y: auto;
}

.contentHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #0000ff;
    padding-bottom: 16px;
}

.headerTitle {
    margin: 0;
    font-size: 28px;
    color: #0000ff;
}

.headerUser {
    font-size: 18px;
    background: #09ff00;
    padding: 8px 16px;
}

.statsBlock {
    display: flex;
    gap: 24px;
}

.statCard {
    background: #fff;
    border: 2px solid #0000ff;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.statTitle {
    font-family: 'Arial Narrow Bold', sans-serif;
    color: #666;
    font-size: 14px;
}

.statValue {
    font-size: 32px;
    color: #0000ff;
}

.interfaceRows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sectionTitle {
    font-size: 20px;
    color: #0000ff;
    margin: 16px 0 0;
}

.uiRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 2px solid #0000ff;
    padding: 12px 20px;
}

.notificationRow {
    border-left: 6px solid #09ff00;
}

.rowInfo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rowAvatar {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid #0000ff;
}

.rowDetails {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rowName {
    font-size: 18px;
}

.rowSub {
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 13px;
    color: #666;
}

.rowActions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.statusBadge {
    background: #09ff00;
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
}

.actionBtn {
    background: transparent;
    color: #0000ff;
    border: 2px solid #0000ff;
    padding: 6px 16px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.actionBtn:hover {
    background: #0000ff;
    color: #fff;
}

.primaryBtn {
    background: #0000ff;
    color: #fff;
}

.primaryBtn:hover {
    background: #09ff00;
    border-color: #09ff00;
    color: #000;
}