/* ძიების სექცია */
.search-section {
    padding: 40px 0px;
    background: linear-gradient(135deg, #1e90ff, #74c0fc);
    color: rgb(206, 159, 159);
    text-align: center;
    margin-bottom: 20px;
}

.search-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.search-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* ჩამოსაშლელი სექციების ღილაკები */
.price-range-toggle-button,
.detailed-search-toggle-button {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #f8f9fa;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #2d3436;
    text-align: left;
    margin-bottom: 15px;
}

.price-range-toggle-button:hover,
.detailed-search-toggle-button:hover {
    background-color: #e9ecef;
}

.price-range-fields,
.detailed-search-fields {
    display: none;
    margin-top: 10px;
}

.price-range-fields {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.price-range-fields input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f8f9fa;
    box-sizing: border-box;
}

.price-range-fields input:focus {
    border-color: #1e90ff;
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 0.2rem rgba(30, 144, 255, 0.25);
}

.detailed-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* თარიღის დიაპაზონის სექცია */
.date-range-section {
    margin-bottom: 20px;
}

.date-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
/* _search-section.css */

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

#searchInput {
    width: 300px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

#searchInput::placeholder {
    color: #888;
}

#searchButton {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#searchButton:hover {
    background-color: #0056b3;
}