/* App Switcher Specifics */
#app-cards-container {
    padding: 3% 10%;
}

.app-switcher-card {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    corner-shape: superellipse(1.5);
    position: relative;
    scroll-snap-align: center;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--sun-shadow-strong);
}

.app-switcher-card .app-icon-img {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 48px;
    height: 48px;
    z-index: 2;
}

.app-switcher-title {
    display: none;
}

/* --- App Switcher (Alt+Tab) Styles --- */
#app-switcher-overlay {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--search-background);
    backdrop-filter: var(--edge-refraction-filter) saturate(2) blur(2.5px);
    border: 1px solid var(--glass-border);
    corner-shape: superellipse(1.5);
    border-radius: 50px;
    padding: 6px 8px;
    box-shadow: var(--sun-shadow), 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(-50%) scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-width: 90%;
    transform-origin: bottom;
}

#app-switcher-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

.app-switcher-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    border-radius: 35px;
    corner-shape: superellipse(1.5);
    transition: background-color 0.2s;
    aspect-ratio: 1 / 1;
}

.app-switcher-item.selected .app-icon-img {
    scale: 1.2;
    filter: brightness(1.5);
}

.app-switcher-item .app-icon-img {
    width: 60px;
    height: 60px;
}

/* --- Modified App Switcher for Split View --- */
.app-switcher-item.is-split-pair {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 16px;
    display: flex;
    aspect-ratio: auto;
}

.app-switcher-item.is-split-pair .app-icon-img {
    width: 40px;
    height: 40px;
    margin: -10px;
}