.global-admin-menu {
    max-width: 1040px;
    margin: 1.5rem auto 0;
}

.global-admin-menu .menu-section {
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #eef1f4;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(33, 37, 41, 0.04);
}

.global-admin-menu .menu-section-header {
    position: relative;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
}

.global-admin-menu .menu-section-title {
    position: relative;
    z-index: 1;
    padding-right: 10px;
    background-color: #f8f9fa;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
}

.global-admin-menu .menu-section-line {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 0;
    height: 1px;
    background: linear-gradient(to right, #dfe4e8, #dfe4e8 55%, transparent 100%);
}

.global-admin-menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.45rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid #e9ecef;
    border-left: 3px solid transparent;
    background-color: #ffffff;
    text-align: left;
    transition: all 0.2s ease;
}

.global-admin-menu .menu-item:hover {
    border-color: #dee2e6;
    border-left-color: #007bff;
    background-color: #f1f4f7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateX(2px);
}

.global-admin-menu .menu-item:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.global-admin-menu .menu-section > .menu-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .global-admin-menu {
        margin-top: 0.75rem;
    }

    .global-admin-menu .menu-section-title {
        font-size: 0.8rem;
    }

    .global-admin-menu .menu-item {
        font-size: 0.95rem;
    }
}
