/* Sidebar Styles */
.sidebar__brand {
    padding: var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.sidebar__logo {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.sidebar__subtitle {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar__nav {
    flex: 1;
    padding: var(--space-4) 0;
}

.sidebar__menu {
    list-style: none;
}

.sidebar__item {
    margin-bottom: var(--space-1);
}

.sidebar__link {
    display: flex;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar__link:hover {
    background-color: var(--gray-50);
    color: var(--gray-900);
}

.sidebar__link--active {
    background-color: var(--primary-50);
    color: var(--primary-700);
    border-left-color: var(--primary-500);
}

.sidebar__icon {
    margin-right: var(--space-3);
    font-size: var(--font-size-lg);
    width: 20px;
    text-align: center;
}

.sidebar__text {
    font-weight: 500;
}

.sidebar__footer {
    padding: var(--space-4);
    border-top: 1px solid var(--gray-200);
}

.sidebar__user {
    display: flex;
    align-items: center;
}

.sidebar__user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-3);
}

.sidebar__user-name {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--gray-900);
}

.sidebar__user-role {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

/* Header Styles */
.header__left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header__menu-toggle {
    background: none;
    border: none;
    font-size: var(--font-size-lg);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease;
}

.header__menu-toggle:hover {
    background-color: var(--gray-100);
}

.header__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
}

.header__right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header__actions {
    display: flex;
    gap: var(--space-2);
}

.header__action {
    position: relative;
    background: none;
    border: none;
    padding: var(--space-2);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.header__action:hover {
    background-color: var(--gray-100);
}

.header__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--error);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__user {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease;
}

.header__user:hover {
    background-color: var(--gray-100);
}

.header__user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__user-name {
    font-weight: 500;
    color: var(--gray-700);
}

/* Add to the end of the file */
.page-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}