/* Examples page specific styles */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    margin-top: 1rem;
    min-height: calc(100vh - 200px); /* Ensures minimum height between header and footer */
}

.examples-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block !important;
    padding: 0 !important;
}

.section-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

.filters-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    font-size: 1.1rem;
    font-weight: 500;
}

.filter-select {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: white;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group label {
        font-size: 1rem;
    }
    
    .filter-select {
        font-size: 0.9rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 