.top {
    position: sticky;
    top: 0;
    right: 0;
    height: 4rem;
    min-height: 4rem;
    max-height: 4rem;
    background-color: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top .menu-name-container {
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 3rem;
}

.top .menu-name-container .menu-name {
    position: relative;
    cursor: pointer;
    font-size: 0.875rem;
}

.top .menu-name-container .menu-name.dashboard-top {
    font-size: 0.875rem;
}

.top .menu-name-container .menu-name.dashboard-top .text {
    color: #305fb1;
    font-weight: 600;
    font-size: 0.875rem;
}

.top .menu-name-container .menu-name.dashboard-top::after {
    content: '';
}

.top .menu-name-container .menu-name.active {
    cursor: default;
}

.top .menu-name-container .menu-name::after {
    content: '\003E';
    position: absolute;
    top: 0;
    right: -2rem;
}

.top .menu-name-container .menu-name:nth-of-type(2)::after {
    content: '';
}

.top .menu-name-container .menu-name .text {
    font-weight: 500;
    font-size: 0.875rem;
}

.top .menu-name-container .menu-name.active .text {
    color: #305fb1;
}

.top .action-buttons-container {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    height: 2.5rem;
    gap: 0.5rem;
}

.top .action-buttons-container .btn {
    outline: none;
    border: 1px solid #ddd;
    color: #000;
    font-size: 0.8125rem;
    background-color: #fff;
    padding: 0.375rem 0.9375rem;
    cursor: pointer;
    border-radius: 0.4rem;
    font-weight: 500;
    min-width: 8rem;
    width: fit-content;
    height: 100%;
}

.top .action-buttons-container .btn-add {
    background-color: #305fb1;
    color: #fff;
    border: 1px solid #305fb1;
}