/* Header Layout */
.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Action Icons */
.action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.action:hover {
    background: rgba(0, 0, 0, 0.025);
}

[data-theme='dark'] .action:hover,
.dark-theme .action:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Right Content */
.right-content {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Notification Badge */
.ant-badge {
    font-size: 14px;
}

/* Header Menu Items */
.ant-dropdown-menu-item {
    padding: 8px 12px;
}

.ant-dropdown-menu-item .anticon {
    margin-right: 8px;
}
