/* Filter Form Container Styling */
.filter-form-container {
    width: 100%;
    justify-content: center;
    align-items: center;
}

/* Custom Select Styling */
.custom-select-style {
    width: 100%;
    min-height: 45px;
    border-radius: 25px;
    padding: 10px;
}
/* Button Styling */
.btn-primary {
    display: inline-block;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #f29a2d;
    border: none; /* Remove the border */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; /* Button takes full width */
    text-align: center;
}

.btn-primary:hover {
    background-color: #223a4c;
    border: none; /* Ensure no border on hover */
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Form Row Styling */
.form-row {

    border-radius: 10px;
    display: flex;
    justify-content: space-between; /* Space between select elements */
    flex-wrap: wrap; /* Allow wrapping if the screen is small */
    gap: 5px;
}

/* Form Group for Each Select */


/* Remove default margin or padding that might affect vertical centering */

.wrap_img {
  position: relative;
  width: 100%;
  height: 260px; /* Set a fixed height or use aspect-ratio */
  overflow: hidden;
}

.wrap_img img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
}
.archive_rental {
  padding: 0 20px;
}