/* simplified_search_ui.css - Style dla uproszczonego interfejsu wyszukiwarki */

.favorite-filters-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    color: white;
}

.favorite-filters-section h5 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
}

.create-profile-prompt {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.favorite-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.favorite-filter-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.favorite-filter-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.filter-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.main-search-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 4px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.search-input-group:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.main-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 16px;
    outline: none;
}

.search-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #5a67d8;
}

.sorting-controls {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.sort-btn {
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.sort-btn:hover {
    background: #f8f9fa;
}

.sort-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

@media (max-width: 768px) {
    .favorite-filters-grid {
        grid-template-columns: 1fr;
    }
    
    .sorting-controls {
        flex-direction: column;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-dialog {
    margin: 50px auto;
    max-width: 90%;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 20px;
}

.nav-link {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.nav-link.active {
    border-bottom-color: #007bff;
    color: #007bff;
}

.tab-content {
    padding: 20px 0;
}

.info-row {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.section {
    margin-bottom: 30px;
}

.section h4 {
    color: #007bff;
    margin-bottom: 15px;
}

.section-item {
    padding: 8px 0;
    margin-left: 20px;
}
