/*
 * Custom Post List Styles
 */

/* Main Wrapper */
.custom-post-list-wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
  }

/* Heading */
.custom-post-list-heading {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2em;
    font-weight: 600;
}

/* List of Posts */
.custom-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual Post Item */
.custom-post-item {
    background-color: #f9f9f9;
        margin-bottom: 15px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.15);
  padding: 24px;
  border-radius: 30px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.custom-post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
ul{
list-style-type:none;
}
/* Post Title */
.custom-post-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 500;
}

.custom-post-title a {
    text-decoration: none;
    color: #0073aa; /* WordPress blue */
    transition: color 0.2s ease-in-out;
}

.custom-post-title a:hover {
    color: #00568f; /* Darker blue on hover */
}

/* Taxonomy */
.custom-post-taxonomy {
    margin-bottom: 5px;
    color: #555;
    font-size: 0.95em;
}

/* Price */
.custom-post-price {
    margin-bottom: 0;
    color: #28a745; /* Green for price */
    font-weight: bold;
    font-size: 1.1em;
}

/* Pagination Container */
.custom-post-pagination {
    text-align: center;
    margin-top: 25px;
}

/* Pagination Buttons */
.custom-post-pagination a {
    display: inline-block;
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.custom-post-pagination a:hover {
    background-color: #00568f;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* No Posts Found Message */
.no-posts-found {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    padding: 20px;
    border: 1px dashed #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
}

/* Responsive adjustments (optional, but good practice) */
@media (max-width: 600px) {
    .custom-post-list-wrapper {
        margin: 10px;
        padding: 15px;
    }

    .custom-post-title {
        font-size: 1.1em;
    }

    .custom-post-price {
        font-size: 1em;
    }

    .custom-post-pagination a {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}
fieldset{
display: flex;
  gap: 16px;
border: none;
}
checkbox{
margin-right: 8px;
}
.filter-label{
margin-bottom: 1rem;
  text-decoration: underline;
  font-size: 1.5rem;
}
label{
font-size:20px;
}
.custom-post-list-wrapper{
margin-bottom:4rem;
}
.filter-button{
background-color:#00599a;
border : 1px solid #00599a;
border-radius: 30px;
}
.filter-button:hover{
background-color:white;
color:#00599a;

}