.app-switcher-menu {
    width: 320px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: white;
    left: 10px;
    top: 40px;
    position: absolute;
    z-index: 1000;
}

.app-switcher-.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.app-switcher-.logo img {
    width: 60px;
}

.app-switcher-h1 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    padding-top: 15px;
}

.app-switcher-menu-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
    cursor: pointer;
}

.app-switcher-menu-item:first-of-type {
    border-top: none;
}

.app-switcher-menu-item img {
    width: 20px;
    margin-right: 12px;
}

.app-switcher-explore {
    margin-top: 30px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.app-switcher-chevron {
    margin-left: auto;
    font-size: 18px;
    transform: rotate(90deg);
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
    cursor: default;
}

.profile-setting {
    position: absolute;
    top: 50px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: white;
    padding: 5px 0;
    display: none;
    z-index: 0;
    width: 0;
    height: 0;
}

.profile-setting.add-opacity {
    opacity: 105;
    color: grey;
    z-index: 1000 !important;
    border: 1px solid darkgray;
    border-radius: 5px;
    cursor: default;
    display: inline-block;
    width: 290px;
    height: 290px;
}
