/* Lines-limit-guard: 500 */

/* ========================================
   DESKTOP SEARCH - RECENT SEARCHES (SIMPLE)
   ======================================== */

/* Recent Searches Section */
.recent-searches-section {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.recent-searches-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.recent-searches-section .search-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.clear-recent-searches {
    background: none;
    border: none;
    color: #ED6F26;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.clear-recent-searches:hover {
    background-color: #f5f5f5;
}

/* Recent Searches Grid */
.recent-searches-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recent-search-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.recent-search-item:hover {
    border-color: #ED6F26;
}

.recent-search-button {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 10px 12px;
    text-align: left;
    cursor: pointer;
}

.recent-search-button:hover {
    background-color: #f9f9f9;
}

.recent-search-icon {
    width: 16px;
    height: 16px;
    color: #999;
}

.recent-search-text {
    font-size: 13px;
    color: #333;
}

.remove-recent-search {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #999;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-recent-search:hover {
    background-color: #f0f0f0;
    color: #666;
}

.remove-recent-search svg {
    width: 14px;
    height: 14px;
}

/* No Recent Searches State */
.no-recent-searches-section {
    padding: 32px 16px;
    text-align: center;
}

.no-recent-searches-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.no-recent-icon {
    width: 40px;
    height: 40px;
    color: #ccc;
}

.no-recent-title {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.no-recent-message {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Mobile (hidden - uses mobile-specific search) */
@media (max-width: 768px) {
    .recent-searches-section,
    .no-recent-searches-section {
        display: none;
    }
} 