.store-title {
  text-align: center;
  color: #28a745;
  font-weight: 600;
  font-size: 18px;
  margin: 15px 0;
}
.feedback-header {
  background-color: #28a745;
  color: white;
  padding: 12px 15px;
  font-weight: 600;
  font-size: 16px;
}
.filter-section {
  background-color: white;
  padding: 12px 15px;
  border-bottom: 1px solid #dee2e6;
}
.store-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-dropdown {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 6px 12px;
  background: white;
  font-size: 14px;
  flex: 1;
  min-width: 120px;
}
.button-row {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}
.btn-search {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  flex: 1;
}
.btn-search:hover {
  background-color: #218838;
}
.btn-reset {
  background-color: #6c757d;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  flex: 1;
}
.btn-reset:hover {
  background-color: #5a6268;
}
.reviews-container {
  background-color: white;
  padding: 0;
}
.review-item {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: opacity 0.3s ease;
}
.review-item:last-child {
  border-bottom: none;
}
.review-item.hidden {
  display: none;
}
.reviewer-avatar {
  width: 36px;
  height: 36px;
  background-color: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 600;
  color: #333;
  margin: 0;
  font-size: 15px;
}
.review-date {
  color: #6c757d;
  font-size: 13px;
  margin: 2px 0 6px 0;
}
.edit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.star-rating {
  color: #ffc107;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.review-text {
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 14px;
}
.comment-section {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 4px;
  margin-top: 8px;
}
.comment-label {
  font-weight: 600;
  color: #333;
  font-size: 13px;
}
.comment-text {
  color: #666;
  font-size: 13px;
  margin: 0;
}

.no-reviews {
  text-align: center;
  padding: 30px 15px;
  color: #6c757d;
  font-size: 15px;
  display: none;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .store-title {
    font-size: 20px;
    margin: 20px 0;
  }
  .feedback-header {
    padding: 15px 20px;
    font-size: 17px;
  }
  .filter-section {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .store-name {
    margin-bottom: 0;
    flex: 1;
  }
  .filter-controls {
    flex-direction: row;
    align-items: center;
    flex: 1;
  }
  .filter-row {
    flex: 1;
  }
  .button-row {
    margin-top: 0;
    flex: 0 0 auto;
  }
  .btn-search,
  .btn-reset {
    padding: 6px 15px;
    flex: 0 0 auto;
    width: auto;
  }
  .review-item {
    padding: 20px;
  }
  .edit {
    flex-direction: row;
  }
  .rating-row {
    width: auto;
    flex-direction: column;
    align-items: flex-end;
  }
  .star-rating {
    margin-bottom: 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    margin: 20px auto;
  }
  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .reviewer-name {
    font-size: 16px;
  }
  .review-date {
    font-size: 14px;
  }
  .star-rating {
    font-size: 16px;
  }
}
