/* Property Filter Plugin Styles */

.property-filter-wrapper {
    width: 100%;
}

.property-filter-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333333;
    text-align: center;
}

.property-filter-form {
    display: grid;
    gap: 20px;
}

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

.pf-form-group {
    display: flex;
    flex-direction: column;
}

.pf-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333333;
    display: block;
}

.pf-form-field {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pf-form-field[multiple] {
    padding: 8px 10px;
    min-height: 120px;
}

.pf-form-field[multiple] option {
    padding: 5px 10px;
    background-color: #ffffff;
    color: #333333;
}

.pf-form-field:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background-color: #ffffff;
}

.pf-form-field::placeholder {
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-filter-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .pf-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .pf-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .property-filter-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .pf-form-row,
    .pf-buttons-row {
        gap: 10px;
    }

    .pf-button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .pf-form-field {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Loading state */
.property-filter-form.loading {
    opacity: 0.6;
    pointer-events: none;
}

.pf-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Error state */
.pf-form-field.pf-error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.pf-error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}



.property-filter-results .ovabrw_pagination_ajax ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.property-filter-results .ovabrw_pagination_ajax ul li {
  cursor: pointer;
  margin: 0 6px 12px 6px;
}
.property-filter-results .ovabrw_pagination_ajax ul li span {
  padding: 0px 10px 0px 10px;
  min-width: 45px;
  font-size: 1.2em;
  font-weight: 600;
  color: #808080;
  height: 42px;
  border: 1px solid #f1f1f1;
  background-color: #f1f1f1;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.property-filter-results .ovabrw_pagination_ajax ul li span i:before {
  font-size: 1.2em;
  font-weight: 600;
}
.property-filter-results .ovabrw_pagination_ajax ul li span:hover {
  background-color: var(--primary);
  color: #fff;
}
.property-filter-results .ovabrw_pagination_ajax ul li .current {
  background-color: var(--primary);
  color: #fff;
}