/**

* Theme Name: BuddyX Child

* Description: This is a child theme of BuddyX, generated by Merlin WP.

* Author: <a href="https://github.com/vapvarun/buddyx">wbcomdesigns,vapvarun</a>

* Template: buddyx

* Version: 4.5.8

*/

/* 11-02-2026 (Start) */
.question-card{
    display:flex;
    background:#fff;
    padding:20px;
    border-radius:12px;
    margin-bottom:16px;
    box-shadow:0 4px 12px rgba(0,0,0,.04);
  }
  
  .question-votes{
    width:60px;
    text-align:center;
    font-size:18px;
  }
  
  .question-content h2{
    font-size:20px;
    margin-bottom:6px;
  }
  
  .question-meta{
    font-size:13px;
    color:#777;
  }
  
  
  /* ===========================
     QUESTION DETAILS PAGE
     =========================== */
  
  /* Main container adjustments */
  .single-topic .entry-content,
  .single-topic .bbp-topic-content {
      max-width: 900px;
      margin: 30px auto;
      padding: 0 15px;
      background: #fff;
  }
  
  /* Question header */
  .single-topic .bbp-topic-header {
      border-bottom: 1px solid #e1e4e8;
      padding-bottom: 16px;
      margin-bottom: 24px;
  }
  
  /* Question Title */
  .single-topic .bbp-topic-title {
      font-size: 28px;
      font-weight: 700;
      color: #1d2327;
      margin-bottom: 8px;
  }
  
  /* Meta row: author, time, replies */
  .single-topic .bbp-topic-meta {
      font-size: 14px;
      color: #6b7280;
  }
  
  .single-topic .bbp-topic-meta a {
      color: #2271b1;
      text-decoration: none;
      font-weight: 500;
  }
  
  .single-topic .bbp-topic-meta a:hover {
      text-decoration: underline;
  }
  
  /* Vote sidebar */
  .single-topic .bbp-topic-content {
      display: flex;
      gap: 24px;
  }
  
  .single-topic .bbp-topic-content .question-votes {
      width: 60px;
      text-align: center;
      font-size: 18px;
      padding-top: 6px;
  }
  
  .single-topic .wpulike {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
  }
  
  /* Question body */
  .single-topic .bbp-topic-content .bbp-topic-description {
      flex: 1;
      font-size: 16px;
      line-height: 1.65;
      color: #333;
  }
  
  /* Replies / Topic content list */
  .single-topic .bbp-replies,
  .single-topic .bbp-topic-content-holder {
      margin-top: 40px;
  }
  
  /* Each reply */
  .bbp-reply-content {
      background: #fafafa;
      border: 1px solid #e2e6eb;
      border-radius: 8px;
      padding: 18px 22px;
      margin-bottom: 14px;
      font-size: 15px;
      line-height: 1.6;
      color: #2d333b;
  }
  
  /* Reply author & meta */
  .bbp-reply-header {
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 10px;
  }
  
  .bbp-reply-header a {
      color: #2271b1;
      font-weight: 500;
      text-decoration: none;
  }
  
  .bbp-reply-header a:hover {
      text-decoration: underline;
  }
  
  /* Reply content text */
  .bbp-reply-content p {
      margin: 0;
  }
  
  /* Reply form container */
  .bbp-topic-form,
  .bbp-reply-form {
      margin-top: 38px;
      padding-top: 18px;
      border-top: 1px solid #e1e4e8;
  }
  
  /* Textarea */
  .bbp-form textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      font-size: 15px;
      color: #333;
      transition: border .2s ease;
  }
  
  .bbp-form textarea:focus {
      border-color: #2271b1;
      box-shadow: 0 0 0 2px rgba(34,113,177,0.2);
  }
  
  /* Reply submit button */
  .bbp-submit-wrapper input[type="submit"] {
      background: #2271b1;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s ease;
  }
  
  .bbp-submit-wrapper input[type="submit"]:hover {
      background: #1a5f8a;
  }
  
  /* Link colors */
  .single-topic a {
      color: #2271b1;
      text-decoration: none;
  }
  .single-topic a:hover {
      text-decoration: underline;
  }
  
  /* Mobile tweaks */
  @media (max-width:768px){
      .single-topic .bbp-topic-content {
          flex-direction: column;
      }
  
      .single-topic .bbp-topic-content .question-votes {
          width: 100%;
          margin-bottom: 16px;
      }
  }
  
  /* 11-02-2026 (End) */