.search-section {
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.region-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.region-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.results-section {
    min-height: 200px;
    position: relative;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-section {
    background: linear-gradient(135deg, #0071e3 0%, #00a0ff 100%);
    padding: 40px 0;
    color: #fff;
    margin-bottom: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header-content {
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.subtitle {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.main-content {
    flex: 1;
    padding: 0 0 40px;
}

@media (max-width: 768px) {
    .header-section {
        padding: 30px 0;
    }

    .header h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }
} 