﻿.manage-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.manage-link {
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

    .manage-link:hover {
        background: #f0f4ff;
    }

    .manage-link.active {
        background: #276688;
        color: #fff;
        font-weight: 500;
    }

    .manage-link.danger {
        color: #b00020;
    }

        .manage-link.danger.active {
            background: #b00020;
            color: #fff;
        }
