/* Base widget styles */
.review-widget {
    font-family: Arial, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Rating stars */
.review-rating {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Review text */
.review-text {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Author info */
.review-author {
    font-weight: bold;
    color: #555;
}

/* Carousel specific styles */
.review-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    display: none;
    padding: 15px;
}

.carousel-item.active {
    display: block;
}

.carousel-nav {
    text-align: center;
    margin-top: 15px;
}

.carousel-nav button {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 5px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
}

.carousel-nav button:hover {
    background: #e9ecef;
}

/* Dropdown specific styles */
.review-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
}

.dropdown-content {
    display: none;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background: white;
}

.dropdown-content .review-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.dropdown-content .review-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Mini stars widget */
.mini-stars-widget {
    display: inline-block;
    font-size: 14px;
}

.mini-stars-widget .stars {
    color: #FFD700;
}

.mini-stars-widget .count {
    color: #666;
    margin-left: 5px;
}