/* Applications Dashboard Styles */
#applications-view {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.apps-grid-container {
    padding: 2.5rem;
    flex: 1;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    animation: fadeIn 0.4s ease-out;
}

.launch-app-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.launch-app-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.launch-app-card-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.launch-app-card-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.app-icon-large {
    font-size: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.app-icon-large svg {
    width: 4.5rem;
    height: 4.5rem;
}

.launch-app-card-body {
    padding: 2rem;
    flex: 1;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.app-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.9;
}

.no-apps-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem;
    background: var(--bg-surface);
    border: 2px dashed var(--border-light);
    border-radius: 24px;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}