.base-container {
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 100vh;
}

.base-header {
    width: 100%;
}

.base-content {
    flex: 1;
    width: 100%;
}

.base-footer {
    width: 100%;
}

.menu-active {
    font-weight: 500;
}

.list-item {
    transition: background-color 0.4s ease-in-out;
    padding: 24px 20px;
}

.list-item:hover {
    background-color: rgb(250, 250, 250);
}

.team-avatar {
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    min-height: 120px;
    max-height: 120px;
    min-width: 120px;
    max-width: 120px;
}

.team-icon {
    cursor: pointer;
    text-decoration: none;
    margin-right: 8px;
    color: rgb(162, 163, 176);
    transition: color 0.3s ease-in-out;
}

.team-icon:hover {
    color: rgb(71, 165, 199);
}

.dropdown-item:active {
    background-color: #ececec !important;
}
