.pls-wrapper {
    border: 1px solid #d6d6d6;
    background: #f7f7f7;
    padding: 16px;
    font-family: Arial, sans-serif;
}
textarea, select, input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=reset], input[type=search], input[type=submit], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], .select2-container .select2-selection--single {
 
    box-sizing: border-box;
}
.pls-search-panel {
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 16px;
    margin-bottom: 16px;
}

.pls-panel-title {
    margin: 0 0 12px;
    font-size: 18px;
    color: #d43b2e;
}

.pls-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    align-items: start;
}

.pls-active-filters {
    margin-top: 8px;
}

.pls-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pls-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pls-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    color: #222;
}

.pls-filter-remove {
    border: none;
    background: #d43b2e;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    line-height: 18px;
    padding: 0;
}

.pls-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #333;
}

/* .pls-field {
    position: relative;
    padding-bottom: 44px;
} */

.pls-field input,
.pls-field select {
    width: 100%;
    border: 1px solid #c8c8c8;
    border-radius: 2px;
    padding: 6px 8px;
    font-size: 14px;
}

.pls-live {
    /* border: 1px solid #c8c8c8; */
    border-radius: 3px;
    background: #fff;
    position: relative;
}

.pls-live-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 6px 8px;
    font-size: 14px;
}

.pls-live-input:focus {
    outline: none;
}

.pls-live-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    padding: 10px;
    z-index: 20;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.pls-live-options {
    max-height: 180px;
    overflow: auto;
}

.pls-live-empty {
    padding: 8px;
    font-size: 13px;
    color: #666;
}

.pls-live-option {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    color:#000;
}

.pls-live-option:hover,
.pls-live-option:focus {
    background: #f2f6ff;
    color:#000;
}

.pls-live-option.is-selected {
    background: #e9f0ff;
    color:#000;
}

.pls-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    grid-column: 1 / -1;
}
.pls-meta h5 {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
}
.pls-actions button {
    background: #d43b2e;
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 2px;
}

.pls-actions .pls-reset {
    color: #555;
    text-decoration: none;
    font-size: 13px;
}

.pls-results-area {
    display: grid;
    grid-template-columns: 20% 39% 39%;
    gap: 11px;
    align-items: start;
}

.pls-left,
.pls-right {
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 12px;
    position: sticky;
    top: 16px;
    max-height: calc(100vh - 32px);
    overflow: auto;
}

.pls-left h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #555;
}

.pls-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.pls-category-list li {
    margin: 6px 0;
}

.pls-category-list a {
    color: #1b56a6;
    text-decoration: none;
}

.pls-center {
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 12px;
}

.pls-results-header {
    background: #666;
    color: #fff;
    padding: 8px 10px;
    font-size: 13px;
    margin-bottom: 12px;
}

.pls-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    position: relative;
}

.pls-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.90);
    z-index: 10;
}

.pls-spinner[hidden] {
    display: none;
}

.pls-spinner-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #d4d4d4;
    border-top-color: #d43b2e;
    animation: pls-spin 0.8s linear infinite;
}

@keyframes pls-spin {
    to {
        transform: rotate(360deg);
    }
}

.pls-card {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.pls-thumb {
    display: block;
    /* height: 140px; */
    overflow: hidden;
}

.pls-thumb img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.pls-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f0f0f0;
    color: #888;
    font-size: 12px;
}

.pls-card-title {
    margin: 10px 0 6px;
    font-size: 14px;
}

.pls-card-title a {
    color: #222;
    text-decoration: none;
}

.pls-meta {
    font-size: 12px;
    color: #666;
}

.pls-empty {
    font-size: 14px;
    color: #666;
}

.pls-reserved {
    background: #4a72b7;
    color: #fff;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    font-size: 16px;
}

.pls-pagination {
    margin-top: 16px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pls-pagination a {
    border: 1px solid #c8c8c8;
    padding: 4px 8px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

.pls-pagination a.is-active {
    background: #d43b2e;
    color: #fff;
    border-color: #d43b2e;
}

@media (max-width: 900px) {
    .pls-results-area {
        grid-template-columns: 1fr;
    }
    .pls-left,
    .pls-right {
        position: static;
    }
    
}
@media (max-width: 767.98px) {
    .pls-wrapper {
        padding: 10px;
    }
    .page-id-60 .entry-content{
        padding-left: 0;
        padding-right: 0;
    }
}