/* Container styling */
.search-section {
    direction: rtl;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: sans-serif;
}

/* Fields styling */
.input-group {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    flex: 1;
    height: 55px;
    position: relative;
}

.input-group label {
    font-weight: bold;
    color: #333333;
    margin-left: 10px;
    white-space: nowrap;
    font-size: 14px;
}

.input-group select {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    appearance: none;
    color: #666666;
    cursor: pointer;
    padding-left: 25px;
    font-size: 14px;
}

/* Left arrow icon */
.input-group::after {
    content: "";
    border: solid #999999;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    left: 15px;
    pointer-events: none;
}

/* Search button styling */
.btn-search {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0 40px;
    height: 55px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-search:hover {
    background-color: #333333;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .search-section {
        flex-direction: column;
    }
    .input-group, .btn-search {
        width: 100%;
    }
}