.flex {
  display: flex;

}
.gap-10 {
  gap: 10px;
}
.pointer {
  cursor: pointer;
}
 html {
  font-size: 100%;
}


{
      font-family: var(--font-body);
      margin: 0;
      background: #fff;
      color: var(--primary);
    }

    .header {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      padding: 12px 40px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--primary);
      text-decoration: none;
    }

    .logo img {
      height: 32px;
      margin-right: 8px;
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      background: var(--primary);
      padding: 8px 24px;
      border-radius: 16px;
      margin: 0 auto;
      flex-grow: 1;
      max-width: 940px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 0;
    }

    .nav a {
      font-family: var(--font-body);
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .nav a.active {
      background: var(--secondary);
      color: var(--primary);
    }

    .nav a:hover:not(.active) {
      background: rgba(255, 255, 255, 0.1);
    }

    .search-box {
      display: flex;
      align-items: center;
      margin: 0 32px;
      flex-grow: 1;
      max-width: 300px;
      background: #fff;
      border-radius: 12px;
    }

    .search-box input {
      width: 100%;
      border: none;
      background: transparent;
      color: #2d5288;
      font-size: 1rem;
      padding: 8px 16px;
      border-radius: 20px;
      outline: none;
    }

    .search-box input::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .search-icon {
      width: 20px;
      height: 20px;
      margin-right: 16px;
      filter: none;
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-left: auto;
    }

    .profile-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #fff;
      font-size: 1rem;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 8px;
    }

    .profile-item:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .profile-item img {
      width: 24px;
      height: 24px;
      filter: brightness(0) invert(1);
    }

    .profile .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
    }

    .banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 8vw 40px 8vw;
      background: #a6c5f366;
    }

    .banner-text {
      max-width: 40vw;
    }

    .banner-title {
      font-size: 3.5rem;
      font-weight: 700;
      font-family: var(--font-heading);
      margin: 0 0 24px 0;
      color: #000000;
    }

    .banner-desc {
      font-size: 1.1rem;
      color: #222;
      margin-bottom: 16px;
      font-family: var(--font-body);
    }

    .banner-img {
      width: 380px;
      height: 320px;
      background: #addfe8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .section {
      margin-top: 40px;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      background: none;
    }

    .section-buttons {
      display: flex;
      gap: 32px;
    }
    .font-bold {
      font-weight: bold;
    font-size: 1.1rem;
    }

    .section-btn {
      color: var(--primary);
      font-size: 24px;
      cursor: pointer;
      text-decoration: none;
      padding: 8px 0;
      border-bottom: 2px solid transparent;
      transition: all 0.2s;
    }

    .section-btn:hover {
      border-bottom-color: var(--primary);
    }

    .section-btn.active {
      border-bottom-color: var(--primary);
      font-weight: bold;
    }

    .section-title {
      background: url('/static-dist/teleteachtheme/assets/icon_page_home/page_home_icon_for_title.svg') no-repeat center center;
      background-size: contain;
      color: var(--primary);
      padding: 16px 0;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      font-weight: bold;
      font-size: 20px;
      justify-content: center;
      width: auto;
      min-width: 350px;
      height: 92px;
      margin-left: -20px;
    }

    .courses-scroll-wrapper {
      position: relative;
/*      display: flex;*/
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--gray-text);
    }

    .courses-list {
      display: flex;
      justify-content: center;
      gap: 24px;
      /* overflow-x: auto; */
      flex: 1;
      scroll-behavior: smooth;
    }

    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      border-radius: 50%;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s;
    }

    .scroll-btn.left {
      left: -21px;
    }

    .scroll-btn.right {
      right: -21px;
    }

    .scroll-btn img {
      width: 80px;
      height: 80px;
      /* padding: 4px; */
    }

    .scroll-btn:active {
      background: var(--secondary);
    }

    .course-card,
    .teacher-card {
      background: #fff;
      border: 1px solid #eee;
      width: 280px;
      box-shadow: 0 2px 8px #0001;
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
    }

    .course-img,
    .teacher-img {
      width: 100%;
      height: 140px;
      background: #addfe8;
      object-fit: cover;
    }

    .course-content,
    .teacher-content {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

    }
    .align-left {
      text-align: left;
    }
    .course-title,
    .teacher-name {
      font-size: 18px;
      font-family: var(--font-heading);
      color: var(--black-text);
      margin: 0 0 8px 0;
    }

    .course-meta,
    .teacher-meta {
      font-size: 14px;
      color: var(--black-text);
      font-family: var(--font-body);
      margin-bottom: 8px;
    }

    .star {
      color: var(--yellow);
      font-size: 1.1rem;
      margin-left: 4px;
    }

    .more-section {
      display: flex;
      gap: 32px;
      margin-top: 32px;
    }

    .more-card {
      background: #fff;
      box-shadow: 0 2px 8px #0001;
      padding: 24px 20px;
      min-width: 240px;
      flex: 1;
    }

    .footer {
      background: var(--primary);
      color: #fff;
      padding: 32px 8vw 24px 8vw;
      margin-top: 40px;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
      min-height: 160px;
    }

    .footer-logo {
      width: 200px;
      height: auto;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .footer-contact {
      position: relative;
      z-index: 1;
      line-height: 1.7;
      justify-content: center;
      display: flex;
      font-family: var(--font-heading);
      font-size: 20px;
      border-bottom: 1px solid #fff;
      padding-bottom: 16px;
    }

    .footer-bg {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      pointer-events: none;
    }

    @media (max-width: 900px) {
      .banner {
        flex-direction: column;
        gap: 32px;
      }

      .banner-img {
        width: 90vw;
        height: 220px;
      }

      .banner-text {
        max-width: 100vw;
      }

      .section,
      .footer {
        padding-left: 4vw;
        padding-right: 4vw;
      }
    }

    /* ===== RESPONSIVE DESIGN ===== */
    
    /* Tablet (768px - 991px) */
    @media (max-width: 991px) {
      .header {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 16px;
      }
      
      .nav-wrapper {
        order: 3;
        width: 100%;
        max-width: none;
        margin-top: 12px;
      }
      
      .nav {
        gap: 12px;
      }
      
      .nav a {
        font-size: 0.9rem;
        padding: 6px 12px;
      }
      
      .search-box {
        margin: 0 16px;
        max-width: 200px;
      }
      
      .profile {
        gap: 16px;
      }
      
      .banner {
        padding: 40px 4vw 30px 4vw;
        flex-direction: column;
        text-align: center;
      }
      
      .banner-text {
        max-width: 100%;
        padding-right: 0;
      }
      
      .banner-img {
        max-width: 80%;
      }
      
      .section {
        margin: 30px 4vw 0 4vw;
      }
      
      .section-title {
        min-width: 250px;
        font-size: 18px;
      }
      
      .scroll-btn {
        width: 40px;
        height: 40px;
      }
      
      .scroll-btn img {
        width: 60px;
        height: 60px;
      }
      
      .courses-list,
      .recommend-list,
      .teachers-list {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
      }
      
      .course-card,
      .teacher-card {
        width: 240px;
        min-width: 240px;
      }
    
    }
    
    /* Mobile Large (576px - 767px) */
    @media (max-width: 767px) {
      .header {
        padding: 8px 15px;
      }
      
      .logo {
        font-size: 1.5rem;
      }
      
      .logo img {
        height: 28px;
      }
      
      .nav-wrapper {
        padding: 6px 16px;
      }
      
      .nav a {
        font-size: 0.85rem;
        padding: 5px 10px;
      }
      
      .search-box {
        margin: 0 12px;
        max-width: 150px;
      }
      
      .profile {
        gap: 12px;
      }
      
      .profile-item {
        font-size: 0.9rem;
        padding: 6px 8px;
      }
      
      .banner {
        padding: 30px 3vw 20px 3vw;
      }
      
      .banner-title {
        font-size: 2.5rem;
      }
      
      .banner-desc {
        font-size: 1rem;
      }
      
      .section {
        margin: 25px 3vw 0 3vw;
      }
      
      .section-title {
        height: 50px;
        font-size: 16px;
      }
      
      .section-buttons {
        gap: 20px;
      }
      
      .section-btn {
        font-size: 20px;
      }
      
      .course-card,
      .teacher-card {
        width: 220px;
        min-width: 220px;
      }
      
      .course-content,
      .teacher-content {
        padding: 12px;
      }
      
      .course-title,
      .teacher-name {
        font-size: 16px;
      }
      
      .footer {
        padding: 24px 3vw 16px 3vw;
      }
      
      .footer-contact {
        font-size: 18px;
      }
    }
    
    /* Mobile Small (376px - 575px) */
    @media (max-width: 575px) {
      .header {
        padding: 8px 10px;
      }
      
      .logo {
        font-size: 1.3rem;
      }
      
      .logo img {
        height: 24px;
      }
      
      .nav-wrapper {
        padding: 6px 12px;
      }
      
      .nav {
        gap: 8px;
      }
      
      .nav a {
        font-size: 0.8rem;
        padding: 4px 8px;
      }
      
      .search-box {
        margin: 0 8px;
        max-width: 120px;
      }
      
      .profile {
        gap: 8px;
      }
      
      .profile-item {
        font-size: 0.8rem;
        padding: 4px 6px;
      }
      
      .banner {
        padding: 20px 2vw 15px 2vw;
      }
      
      .banner-title {
        font-size: 2rem;
      }
      
      .banner-desc {
        font-size: 0.9rem;
      }
      
      .section {
        margin: 20px 2vw 0 2vw;
      }
      
      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      
      .section-title {
        height: 45px;
        font-size: 14px;
        min-width: 200px;
      }
      
      .section-buttons {
        gap: 16px;
      }
      
      .section-btn {
        font-size: 18px;
      }
      
      .courses-list,
      .recommend-list,
      .teachers-list {
        gap: 16px;
        padding: 0 5px;
      }
      
      .course-card,
      .teacher-card {
        width: 200px;
        min-width: 200px;
      }
      
      .course-img,
      .teacher-img {
        height: 120px;
      }
      
      .course-content,
      .teacher-content {
        padding: 10px;
      }
      
      .course-title,
      .teacher-name {
        font-size: 14px;
      }
      
      .course-meta,
      .teacher-meta {
        font-size: 12px;
      }
      
      .teachers-btn {
        padding: 6px 12px;
        font-size: 12px;
      }
      
      .more-card {
        padding: 16px 12px;
      }
      
      .more-card-title {
        font-size: 20px;
      }
      
      .review-name,
      .group-name {
        font-size: 14px;
      }
      
      .news-item {
        font-size: 0.9rem;
      }
      
      .footer {
        padding: 20px 2vw 12px 2vw;
      }
      
      .footer-contact {
        font-size: 16px;
      }
    }
    
    /* Extra Small (≤375px) */
    @media (max-width: 375px) {
      .header {
        padding: 6px 8px;
      }
      
      .logo {
        font-size: 1.2rem;
      }
      
      .logo img {
        height: 20px;
      }
      
      .nav-wrapper {
        padding: 4px 8px;
      }
      
      .nav a {
        font-size: 0.75rem;
        padding: 3px 6px;
      }
      
      .search-box {
        margin: 0 6px;
        max-width: 100px;
      }
      
      .search-box input {
        font-size: 0.8rem;
        padding: 6px 12px;
      }
      
      .profile {
        gap: 6px;
      }
      
      .profile-item {
        font-size: 0.75rem;
        padding: 3px 4px;
      }
      
      .banner {
        padding: 15px 1vw 10px 1vw;
      }
      
      .banner-title {
        font-size: 1.8rem;
      }
      
      .banner-desc {
        font-size: 0.85rem;
      }
      
      .section {
        margin: 15px 1vw 0 1vw;
      }
      
      .section-title {
        height: 40px;
        font-size: 12px;
        min-width: 180px;
      }
      
      .section-btn {
        font-size: 16px;
      }
      
      .scroll-btn {
        width: 30px;
        height: 30px;
      }
      
      .scroll-btn img {
        width: 45px;
        height: 45px;
      }
      
      .course-card,
      .teacher-card {
        width: 180px;
        min-width: 180px;
      }
      
      .course-img,
      .teacher-img {
        height: 100px;
      }
      
      .course-content,
      .teacher-content {
        padding: 8px;
      }
      
      .course-title,
      .teacher-name {
        font-size: 13px;
      }
      
      .course-meta,
      .teacher-meta {
        font-size: 11px;
      }
      
      .teachers-btn {
        padding: 5px 10px;
        font-size: 11px;
      }
      
      .more-card {
        padding: 12px 8px;
      }
      
      .more-card-title {
        font-size: 18px;
      }
      
      .review-name,
      .group-name {
        font-size: 14px;
      }
      
      .news-item {
        font-size: 0.9rem;
      }
      
      .footer {
        padding: 16px 1vw 8px 1vw;
      }
      
      .footer-contact {
        font-size: 14px;
      }
    }

    .recommend-scroll-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--gray-text);
    }

    .recommend-list {
      display: flex;
      gap: 24px;
      justify-content: center;
      /* overflow-x: auto; */
      flex: 1;
      scroll-behavior: smooth;
    }

    .teachers-scroll-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .teachers-list {
      display: flex;
      gap: 24px;
      flex: 1;
      justify-content: center;
      scroll-behavior: smooth;
    }

    .teachers-btn{
      margin-top:12px;
      padding:4px 8px;
      border:1px solid var(--primary);
      background:#fff;
      color:#000000;
      width:50%;
      cursor:pointer;
    }

    .more-list {
      display: flex;
      gap: 32px;
      margin-top: 24px;
      justify-content: center;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--gray-text);
    }

    .more-card {
      background: #fff;
      box-shadow: 0 8px 16px #0001;
      padding: 24px 20px;
      min-width: 260px;
      max-width: 320px;
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .more-card-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--black-text);
      font-family: var(--font-button);
    }

    .review-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 4px;
    }

    .group-row {
      /* display: flex-column; */
      align-items: center;
      gap: 8px;
      margin-bottom: 4px;
    }

    .review-avatar,
    .group-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
    }

    .review-name {
      color: var(--primary);
      font-weight: 600;
      font-size: 18px;
      font-family: var(--font-body);
    }

    .review-from {
      color: #888;
      font-size: 16px;
      margin-left: 4px;
    }

    .review-stars {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 8px;
      margin-left: 0;
      margin-top: 4px;
    }

    .review-stars .star-container {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-left: 0;
    }

    .review-date {
      font-size: 14px;
      color: #222;
      font-family: var(--font-body);
      font-weight: 500;
      margin: 0;
      margin-left: 16px;
      white-space: nowrap;
    }

    .star-container img {
      width: 16px;
      height: 16px;
      object-fit: contain;
      display: inline-block;
    }

    .group-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      width: 100%;
    }
    .group-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      object-fit: cover;
    }
    .group-name {
      color: var(--black-text);
      font-size: 18px;
      font-family: var(--font-body);
      margin-right: 8px;
      margin-left: 0;
      white-space: nowrap;
    }
    .group-meta-icons {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 0;
    }
    .group-meta-icons img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      display: inline-block;
    }
    .group-row .review-date {
      margin-left: auto;
      font-size: 18px;
      color: #222;
      font-family: var(--font-body);
      font-weight: 500;
      white-space: nowrap;
    }

    .news-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .news-item {
      color: var(--primary);
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 0;
      font-family: var(--font-body);
    }

    .course-meta-icons {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-top: 12px;
      margin-bottom: 0;
      min-height: 32px;
      justify-content: space-between;
    }

    .star-container {
      display: flex;
      align-items: center;
      margin-left: auto;
      gap: 4px;
    }

    .course-meta-icons img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      display: inline-block;
    }
    .course-meta-icons .lg-image img {
      width: 50px;
      height: 50px;
    }

    .course-meta-icons .star {
      color: var(--yellow);
      font-weight: bold;
      font-size: 1.2rem;
      margin-left: 1px;
      margin-right: 0;
      padding-left: 2px;
    }


.profile-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    justify-content: space-between;
    gap: 40px;
}
.profile-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.profile-container {
    padding: 10px 60px;
    background-color: var(--secondary);
}

.profile-image-container {
    display: flex;
    align-items: end;
    padding: 20px;
    border-radius: 10px;
    margin-right: 40px;
}

.profile-info {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
}

.start-node {
    display: flex;
    justify-content: flex-end;
}
.image-right {
    width: 420px;
    height: 240px;
}

.gap-2 {
  gap: 10px;
}

.news-item a {
  color: var(--primary);
}


.cd-btn.cd-btn-ghost-primary {
  color: var(--primary);
  border-color:  var(--secondary);
}
.fc-toolbar .fc-center {
    margin-left: 220px;
}

.panel-create-course .course-select {
 color: var(--black-text);
}
.nav-wrapper a, .nav-wrapper a:hover {
                color:white;
}

.dropdown-menu a {
  color: var(--black-text);

}
.dropdown-menu a:hover {
  color: var(--black-text);
}

 .btn.loading {
    pointer-events: none;
    color: transparent;
    position: relative;
}



 .btn.loading::after {
    content: "...";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid #fff;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}



.question-management-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Header Section */
.header-section {
  margin-bottom: 32px;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.import-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.import-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.ai-section {
  margin-top: 8px;
}

.ai-label {
  font-size: 14px;
  color: #666;
}

/* Question Carousel Container */
.question-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0 40px;
}

.question-carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.question-carousel {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Question Feature Card */
.question-feature-card {
  flex: 0 0 auto;
  width: 140px;
  min-width: 140px;
  background-color: white;
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: grab;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  user-select: none;
  touch-action: pan-y;
  position: relative;
  overflow: visible;
}

.question-feature-card:active {
  cursor: grabbing;
}

.question-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.question-feature-card:active {
  transform: translateY(-2px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #2563eb;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.question-feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.feature-text {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  max-width: 100%;
}

.feature-preview {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 220px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 20;
}

.feature-preview img {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
}

.feature-preview-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #f8fafc;
}

.question-feature-card:hover .feature-preview {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
  background-color: #f9fafb;
  border-color: #2563eb;
  color: #2563eb;
  transform: scale(1.1);
}

.carousel-nav-btn:active {
  transform: scale(0.95);
}

.carousel-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.carousel-nav-btn:disabled:hover {
  background-color: white;
  border-color: #e5e7eb;
  color: #6b7280;
  transform: none;
}

/* Search and Filter Section */
.search-filter-section {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-dropdown {
  padding: 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: white;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-width: 150px;
}

.filter-dropdown:hover {
  border-color: #9ca3af;
}

.filter-dropdown:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.keywords-input {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.keywords-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-button:hover {
  background-color: #1d4ed8;
}

.search-button:active {
  transform: scale(0.98);
}

/* Question Table */
.question-table-container {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.question-table {
  width: 100%;
  border-collapse: collapse;
}

.question-table thead {
  background-color: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}

.question-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.question-table th:first-child {
  width: 50px;
}

.question-table th:last-child {
  width: 120px;
}

.question-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.question-table tbody tr:hover {
  background-color: #f9fafb;
}

.question-table tbody tr:last-child {
  border-bottom: none;
}

.question-table td {
  padding: 16px;
  font-size: 14px;
  color: #333;
}

.question-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2563eb;
}

.statement-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.statement-title {
  color: #10b981;
  font-weight: 500;
}

.statement-subtitle {
  color: #6b7280;
  font-size: 13px;
}

.update-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.update-user {
  font-weight: 500;
  color: #333;
}

.update-date {
  color: #6b7280;
  font-size: 13px;
}

.action-button {
  padding: 6px 12px;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-button:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .question-carousel-wrapper {
      padding: 0 36px;
  }

  .question-feature-card {
      width: 120px;
      min-width: 120px;
      padding: 16px 12px;
  }

  .feature-icon {
      width: 50px;
      height: 50px;
      font-size: 28px;
  }

  .feature-text {
      font-size: 12px;
  }
}

@media (max-width: 768px) {
  .question-management-container {
      padding: 16px;
  }

  .question-carousel-wrapper {
      padding: 0 32px;
  }

  .carousel-nav-btn {
      width: 36px;
      height: 36px;
      font-size: 14px;
  }

  .question-feature-card {
      width: 100px;
      min-width: 100px;
      padding: 14px 10px;
  }

  .feature-icon {
      width: 45px;
      height: 45px;
      font-size: 24px;
  }

  .feature-text {
      font-size: 11px;
  }

  .search-filter-section {
      flex-direction: column;
  }

  .filter-dropdown,
  .keywords-input {
      width: 100%;
  }

  .search-button {
      width: 100%;
      justify-content: center;
  }

  .question-table {
      font-size: 12px;
  }

  .question-table th,
  .question-table td {
      padding: 10px 8px;
  }
}

/* Touch/Swipe Support */
.question-carousel {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
.question-carousel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.question-carousel-container::-webkit-scrollbar {
  display: none;
}

