
/* COMMENT SECTION CONTAINER */
.description__comments {
    margin-top: 40px;
}

/* TITLE */

.right-sidebar__title::before {
    content: '💬'; /* Comment icon */
    margin-right: 10px; /* Spacing */
}

.right-sidebar__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main);
    align-items: center;
}

.right-sidebar__title::before {
    content: '💬'; /* Comment icon */
    margin: 0px 0px 0px 10px; /* Spacing */
}

.right-sidebar__titles {
    font-size: 24px;
    font-weight:bold;
    margin-bottom: 20px;
    color: var(--text-main);
    align-items: center;
}
/* COMMENT LIST */


.comment-list>.comment {
    padding: 0.9rem;
    list-style: none;
  border-top: 1px solid var(--border-color);
}

.comment-list:not(:last-child) {
    margin-bottom: 2rem;
}


.comment-list ul {
    list-style: none;
    border-bottom: 2px solid var(--border-color);
}

.comment-body {
    margin-bottom: 1rem;
    font-size: 14px !important;
  color: var(--text-main);
}

.comment-body img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 1rem;
}


.comment-body cite {
    margin-right: 0.7rem;
}

.comment-list li>ul {
    margin-left: 3rem;
}

.comment-author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  color: var(--primary);
}

.commentmetadata {
    display: flex;
    justify-content: flex-end;
    margin-top: -3rem;
  font-size: 12px; /* Smaller font for date */
    color: #999; /* Lighter color for date */

}


.comment-body p {
    margin-top: 1.5rem;
    margin-right: 5rem;
    text-align: justify;
}


.comment-reply-link {
    display: flex;
    justify-content: flex-end;
    margin-top: -1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}


.reply a {
    color: var(--button);
    font-weight: bold;
}


.comment-list .children {
    background-color: #f0f2f5;
    padding: 1rem;
    border-radius: 2rem;
}

.comment-list ol:not(:last-child) {
    margin-bottom: 2rem;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-navigation a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
}

/* COMMENT FORM */
.comment-respond {
    margin-top: 25px;
    padding: 20px;
    background-color: var(--bg-card);
    border: 1px solid #ddd;
    border-radius: 10px;
   
}

/* FORM GROUP */
.form__group {
    margin-bottom: 15px;
  
 
}

/* INPUT FIELDS */
.form__input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #f5f5f5;
}

.form__input:focus {
    border-color: #1877f2;
    background: #fff;
}

/* LABEL */
.form__label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* CHECKBOX */
.comment-cookies {
    font-size: 13px;
    color: #555;
}

/* SUBMIT BUTTON */
.btn--primary {margin-top: 20px;
    background: #1877f2;
    border: none;
    padding: 12px 22px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn--primary:hover {
    background: #0f5fd6;
}





.rating-call-to-action p {
    margin: 10px 0;
}

.rating-call-to-action strong {
    font-weight: bold;
}

.rating-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--button); /* Adjust as needed */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.rating-link:hover {
    color: #fff;
}



  /* ----------------------------
     No Search Results UI
  ----------------------------- */
  .no-results {
      text-align: center;
      padding: 30px;
      margin: 35px auto;
      background: var(--mobile-header-bg);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 500px;
  }
  
  .no-results-icon {
      font-size: 3rem;
      color: var(--accent-color);
      margin-bottom: 10px;
  }
  
  .no-results h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--body-text);
  }
  
  .no-results p {
      font-size: 1rem;
      color: var(--rartist-name);
      margin-bottom: 15px;
  }
  
  /* No Results Search Bar */
  .no-results-search {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--xsearch-form-bg);
      border: 2px solid var(--xsearch-border);
      border-radius: 8px;
      padding: 5px;
      max-width: 400px;
      margin: 0 auto;
  }
  
  .no-results-search input {
      flex: 1;
      padding: 10px;
      border: none;
      outline: none;
      font-size: 1rem;
      background: transparent;
      color: var(--body-text);
  }
  
  .no-results-search button {
      padding: 10px 15px;
      background: var(--menu-bg);
      border: none;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 5px;
      transition: background 0.3s ease;
  }
  
  .no-results-search button:hover {
      background: var(--search-btn-bg-hover);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .no-results {
          padding: 20px;
          margin: 20px auto;
      }
  
      .no-results h3 {
          font-size: 1.5rem;
      }
  
      .no-results p {
          font-size: 0.9rem;
      }
  
      .no-results-search {
          max-width: 100%;
      }
  }

  @media (min-width: 992px) {
    .no-results-search.mobile {
      display: none !important;
    }
    }
    
    @media (max-width: 991px) {
      .no-results-search.mobile {
        max-width: 85%;
        margin-bottom: 10px;
      }
    }    
