.topbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
    padding: 8px 12px;
}

.topbar-title {
    color: white;
    font-size: 2.4em;
    font-family: Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 600;
    text-align: center;
    flex-grow: 1;
    margin-top: 0px;
}

.topbar-right-group {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-right: 20px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    padding: 10px 10px 10px 16px;
    justify-items: center;
}

.app-tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.app-tile {
    background: #f0f0f0;
    border-radius: 6px;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s;
    cursor: pointer;
    width: 100%;
}

.app-tile:hover {
    background-color: #e0e0e0;
}

.app-tile i {
    font-size: 30px;
    margin-bottom: 4px;
}

.app-tile span {
    font-size: 13px;
    color: #333;
}

.logout-menu {
    margin-right: 12px;
}

/* Ensures the apps icon in the topbar is large and white */
.apps-icon {
    font-size: 32px !important;        /* Restore the size */
    color: white;           /* Keep it visible on dark topbar */
    vertical-align: middle;
    cursor: pointer;
}

