body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}
.container {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 80px 20px 20px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.container.view {
    max-width: 1100px;
    margin: 0px auto;

}
h1, h2 {
    text-align: center;
    color: #333;
    
}
.details {
    margin-bottom: 30px;
}
.details strong {
    color: #444;
    font-weight: 600;
}
.details p {
font-size: 1.1rem;
color: #444;
margin: 8px 0;
}
.content {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}
.star-filled {
    color: #FFD700; /* Yellow color */
    font-size: 20px;
    margin-right: 2px; /* Add spacing between stars */
}

.star-empty {
    color: #ccc; /* Gray color */
    font-size: 20px;
    margin-right: 2px;
}
.listings-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.listing-card {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}
.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.listing-card h3 {
    font-size: 1.3rem;
color: #333;
margin-bottom: 15px;
}
.listing-card p {
    margin: 5px 0;
    font-size: 1rem;
color: #282424;
}
.swiper {
    width: 100%;
 
    margin: 30px 0;
border-radius: 8px;
overflow: hidden;
}
.swiper-slide img, .swiper-slide video {
    display: block;
    max-width: 100%;
    max-height: 250px;
    border-radius: 8px;
    margin: 0 auto;
}
.swiper-pagination {
position: static;
margin-top: 10px;
text-align: center;
}
.swiper-button-next, .swiper-button-prev {
    color: #333;
}
.swiper-pagination-bullet {
    background: #333;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px!important;
    background: white;
    padding: 12px;
    border-radius: 50%;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s;
}
.swiper-pagination-bullet-active {
background-color: #FF6347;
box-shadow: 0 0 0 5px rgba(255, 99, 71, 0.3);
transform: scale(1.2);
}
.listings-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.swiper-pagination-bullet:hover {
    background-color: #FF6347;
}
.swiper-pagination-bullet-active {
    background-color: red;
    transform: scale(1.2); /* Slightly larger for the active dot */
    box-shadow: 0 0 0 5px rgba(255, 0, 0, 0.3); /* Red outer circle */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}