.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/**
 * Styles for the carousel wrapper elements
 */



 .wpgr-container {
    max-width: 100%;
    margin: 0 auto;

    position: relative;
}

.wpgr-carousel {
    /* position: relative;
    overflow: hidden;
    border:solid 1px #8B8B8B;
    min-height: 200px; Initial min-height, will be updated by JS */
}

.wpgr-carousel .wpgr-review {
    /* width: 33.3333%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease; */
}

.wpgr-carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.wpgr-prev,
.wpgr-next {
    /* background-color: transparent; */
    /* border: none; */
    /* border-radius: 3px; */
    /* padding: 8px 16px; */
    cursor: pointer;
    /* border: solid 1px #e0c592; */
    /* font-size: 14px; */
    /* transition: background-color 0.3s ease; */
}

.wpgr-prev:hover,
.wpgr-next:hover {
    background-color: #e0c592;
    color:white;

}


.wpgr-no-reviews {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #777;
}

/**
 * Styles for the wpgr-review elements
 */
.wpgr-review {
    /* background-color: #fff; */
    padding: 2%;
    border:solid 1px #333333;
    transition: transform 0.3s ease;
}

.wpgr-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wpgr-review-avatar {
    margin-right: 15px;
}

.wpgr-review-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.wpgr-review-info {
    flex: 1;
}

.wpgr-review-name {
    /* font-weight: bold; */
    font-size: 16px;
    margin-bottom: 4px;
}

.wpgr-review-date {
    color: #777;
    font-size: 13px;
}

.wpgr-review-stars {
    margin-bottom: 15px;
}

.wpgr-star {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 2px;
    background-repeat: no-repeat;
    background-size: contain;
}

.wpgr-star-full {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
}

.wpgr-star-empty {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23D3D3D3"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
}

.wpgr-review-content {
    color:#4e4e4e;
    font-size:15px;
}

.wpgr-review-content p {
    margin-bottom: 5px;
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
}

.wpgr-review-content p:last-child {
    margin-bottom: 0;
}