
.app-drawer-container {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.app-drawer-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.app-drawer-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.app-drawer-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    padding: 16px;
    margin-top: 8px;
}

.app-drawer-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    transition: background-color 0.3s;
}

.app-item:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.app-icon {
    width: 40px;
    height: 40px;
    background-color: #f1f3f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #5f6368;
    font-size: 18px;
}

.app-item span {
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}