/* Container Scope */
.AwardsTab .info_card_box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.AwardsTab .card_header_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 24px;
}

.AwardsTab .expandable_header {
  cursor: pointer;
}

.AwardsTab .header_left_group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.AwardsTab .info_circle_icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1e293b;
}

.AwardsTab .header_heading_text {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.AwardsTab .header_collapse_btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.AwardsTab .collapse_chevron_icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.AwardsTab .chevron_rotated {
  transform: rotate(180deg);
}

/* Empty State Styling */
.AwardsTab .video_ai_content_body {
  padding: 32px 0 24px 0;
}

.AwardsTab .empty_state_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.AwardsTab .empty_state_graphic {
  position: relative;
  width: 140px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.AwardsTab .graphic_bg_circle {
  position: absolute;
  width: 120px;
  height: 80px;
  background-color: #f1f5f9;
  border-radius: 50%;
  z-index: 1;
}

.AwardsTab .scroll_svg_icon {
  width: 110px;
  height: 110px;
  z-index: 2;
}

.AwardsTab .empty_state_text {
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  margin: 0;
}