/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.widget-container {
    max-width: 750px;
    margin: 20px auto;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h2 {
    font-size: 24px; /* Adjust the font size as needed */
    color: #333; /* Adjust the color as needed */
}

.header p {
    font-size: 18px; /* Adjust the font size as needed */
    color: #666; /* Adjust the color as needed */
    margin: 5px 0;
}

.review {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    /* border-radius: 8px; */
}

.review img {
    width: auto;
    height: 75px;
    margin-right: 15px;
}

.rating {
    color: #ffcc00; /* Yellow color */
    font-size: 1.2em; /* Adjust the size as needed */
}

.rating::before {
    content: '\2605'; /* Unicode character for a solid star */
    margin-right: 2px; /* Adjust spacing */
}

.rating::after {
    content: '\2605'; /* Unicode character for a solid star */
    margin-left: 2px; /* Adjust spacing */
    color: #ddd; /* Color for empty stars (gray in this example) */
}

.star {
    color: #ffcc00; /* Yellow color */
    font-size: 24px; /* Adjust the size as needed */
    margin-right: 2px; /* Adjust the spacing between full stars */
}

.star.half {
    position: relative;
    display: inline-block;
    margin-right: 2px; /* Adjust the spacing between half stars */
    overflow: hidden;
}

.star.half:before {
    content: '\00BD'; /* Unicode character for half star */
    position: absolute;
    left: 0;
}

.pagination-button.active {
    background-color: #007bff;
    color: #fff;
}

.button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3;
}

.review-details {
    display: flex;
    align-items: center;

}

.publisher-icon {
    margin-right: 10px;
}


.center-button {
    text-align: center;
}


.comment-section {
    margin-bottom: 30px;
    padding: 15px;
    padding-left: 100px;
    margin-top: -21px;
    border: 1px solid #ddd;
    /* border-radius: 8px; */

}

.pagination-container {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.pagination-button {
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
}

.recommended-text {
    color: green;
    font-weight: bold;
}

.not-recommended-text {
    color: red;
    font-weight: bold;
}