/**
 * Review Page (Đánh Giá) Styles
 * Custom styles for the reviews page
 */

#blog-page {
  padding: 40px 0 0 0 !important;
  margin-bottom: 0 !important;
}

#commentbox {
  padding-top: 15px !important;
  margin-top: 0 !important;
}

#commentbox .Comments {
  padding-top: 0 !important;
}

.comment_area {
  padding-top: 20px !important;
  border-top: none !important;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.review-button-row {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.filter-buttons a {
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 10px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-buttons a:hover,
.filter-buttons a.active {
  background-color: #dc3545;
  color: white;
  border-color: #dc3545;
}

@media (max-width: 768px) {
  #blog-page {
    padding: 20px 0 0 0 !important;
  }

  #commentbox {
    padding-top: 10px !important;
  }

  .comment_area {
    padding-top: 15px !important;
  }

  .review-button-row {
    margin-bottom: 15px !important;
    flex-direction: column;
  }

  .filter-buttons {
    margin-bottom: 15px;
    text-align: center;
  }
  .filter-buttons a {
    margin-bottom: 10px;
    text-align: center;
  }

  .review-button-row .text-end {
    text-align: right !important;
    padding-right: 40px;
  }
}

@media (min-width: 769px) and (max-width: 990px) {
  .filter-buttons {
    display: flex;
    justify-content: center;
   
  }
  .filter-buttons a {
    margin-bottom: 0; 
  }
}

