.rselw-reviews-container {
  position: relative;
  padding-bottom: 60px;
}
.rselw-reviews-wrapper {
  position: relative;
  min-height: 250px;
}
.rselw-review-item {
  display: none;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  background: #fafafa;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  min-height: 200px;
}
.rselw-review-item.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
.rselw-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.rselw-profile-img img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 10px;
}
.rselw-profile-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
}
.rselw-profile-details .rselw-name {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
.rselw-date {
  font-size: 13px;
  color: #888;
}
.rselw-review-content {
  margin-top: 10px;
}
.rselw-stars span {
  font-size: 18px;
  color: #FFD700;
  margin-right: 2px;
}
.rselw-review-text-container {
  position: relative;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-top: 10px;
}
.rselw-review-text-container.expanded {
  max-height: 1000px;
}
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  color: #8c0bef;
  font-weight: bold;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.rselw-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.rselw-btn-text {
  background: #8c0bef;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 8px;
}

.rselw-btn-text:disabled {
  background: #ccc;
  cursor: default;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.rselw-btn-text:focus {
  outline: none;
  box-shadow: none;
}



.rselw-profile-img img {
    border-radius: 50%;
}




button.rselw-btn-text:not(:disabled):hover,
button.rselw-btn-text:not(:disabled):focus {
    color: #fff;
    background-color: #8c0bef;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}
