.welcome { text-align: center; padding: 4rem 1rem; }
.welcome h1 { font-size: 2.5rem; margin-bottom: 1rem; color: #333; }
.welcome p { font-size: 1.2rem; color: #666; margin-bottom: 2rem; }
.login-button { display: inline-block; background: #007bff; color: white; padding: 0.75rem 2rem; border-radius: 4px; text-decoration: none; font-size: 1.1rem; }
.login-button:hover { background: #0056b3; }

.app-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.app-card .icon {
    font-size: 2.5rem;
    width: 60px;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-card .content {
    flex: 1;
    min-width: 0;
}

.app-card .name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.app-card .description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (min-width: 600px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .app-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
