.sm-menu {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: #f2f2f2;
    max-width: 250px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    justify-content: center;
}

.app-item {
    text-align: center;
    color: #333;
    text-decoration: none;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-item img {
    width: 25px;
    height: 25px;
    margin-bottom: 8px;
}

.app-item span {
    font-size: 12px;
}

.app-item:hover {
    color: #000066;  /* Hover color */
}

/* Show the dropdown when clicking */
.show {
    display: block !important;
}