.highlight-yellow {
  background-color: #fff8c4; /* 연노랑색 배경 */
  color: #f57f17; /* 진노랑 텍스트 */
  font-weight: bold;
  padding: 0 4px;
  border-radius: 3px;
}
.highlight-purple {
  background-color: #f3e5f5; /* 연보라색 배경 */
  color: #4a148c; /* 진보라 텍스트 */
  font-weight: bold;
  padding: 0 4px;
  border-radius: 3px;
}

.holdings-container {
  margin: 20px;
  font-family: Arial, sans-serif;
}
.holdings-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.holdings-tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  margin-bottom: -1px;
  color: black;
}
.holdings-tab.active {
  background-color: #fff;
  border-color: #ddd #ddd #fff;
  border-radius: 4px 4px 0 0;
  color: black;
  font-size: x-large;
}
.holdings-content {
  display: none;
}
.holdings-content.active {
  display: block;
}
.holdings-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.holdings-table th,
.holdings-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.holdings-table th {
  background-color: #f8f9fa;
  font-weight: bold;
  color: #333;
}
.holdings-table tr:hover {
  background-color: #f5f5f5;
}
.positive-change {
  color: #28a745;
}
.negative-change {
  color: #dc3545;
}
.dataTables_wrapper {
  margin-top: 20px;
}

.ownership-container {
  margin: 20px;
  font-family: Arial, sans-serif;
}
.ownership-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}
.summary-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.summary-item h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 14px;
}
.summary-item p {
  margin: 0;
  font-size: 16px;
  color: #0066cc;
  font-weight: bold;
}
.dataTables_wrapper {
  margin-top: 20px;
}
table.dataTable tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
table.dataTable tbody td {
  padding: 12px 15px;
}
.positive-change {
  color: #28a745;
}
.negative-change {
  color: #dc3545;
}

.thumbnail-wrapper {
  width: 300px;
  height: 300px;
  overflow: hidden;
  position: relative;
}

/* 방법 1: 이미지를 영역에 맞추기 */
.thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 이미지 비율 유지하며 맞춤 */
}

/* 또는 방법 2: 이미지를 채우면서 중앙 정렬 */
.thumbnail-wrapper img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 영역을 꽉 채움 */
  object-position: center; /* 중앙 정렬 */
}

/* 또는 방법 3: 이미지를 배경으로 처리 */
.thumbnail-wrapper.background {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.stock-logo-container {
  text-align: center;
  margin: 20px 0;
}
.stock-logo {
  max-width: 100px;
  height: auto;
  display: inline-block;
}
.stock-thumbnail-container {
  text-align: center;
  margin: 30px 0;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stock-thumbnail {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 200px;
  object-fit: contain; /* 이미지 비율 유지 */
}
.stock-news-section,
.financial-info-section {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}
.news-content p,
.finance-content p {
  margin: 5px 0; /* 줄간격 축소 */
  line-height: 1.3; /* 줄간격 축소 */
}
.news-content {
  font-size: 14px; /* 글자 크기 조정 */
}
.financial-charts-container {
  margin: 15px 0;
  display: flex;
  flex-direction: column; /* 세로로 배치 변경 */
  gap: 30px; /* 간격 증가 */
  align-items: center;
}

.chart-item {
  width: 100%;
  max-width: 800px; /* 최대 너비 증가 */
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-item h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
}

.financial-chart {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.tooltip {
  position: absolute;
  background-color: white;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  pointer-events: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.chart-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 450px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0px;
  margin-bottom: 24px;
}

.section-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.section-title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: #4e8aff;
  border-radius: 2px;
  display: inline-block;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 12px;
}

.summary-item {
  padding: 16px;
  background: #f8f9fc;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.summary-item:hover {
  background: #eef1f8;
}

.summary-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.summary-value {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.info-description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eef1f8;
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.info-description-item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.info-description-title {
  color: #666;
  font-weight: 500;
  min-width: 80px;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 나머지 이전 스타일 유지 */
.container .card .dividend-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin-top: 12px !important;
  background: transparent !important;
  border: none !important;
}

.dividend-table {
  min-width: 600px; /* 적절한 최소 너비 설정 */
  border-collapse: collapse;
  width: 100%;
}

.container .card .dividend-table th {
  background: #f8f9fc !important;
  color: #666 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  text-align: left !important;
  padding: 12px !important;
  border: none !important; /* 추가 */
  border-bottom: 1px solid #eef1f8 !important;
}

.container .card .dividend-table td {
  padding: 16px 12px !important;
  border: none !important; /* 추가 */
  border-bottom: 1px solid #eef1f8 !important;
  font-size: 14px !important;
  background: transparent !important;
}

.container .card .dividend-table tr {
  border: none !important; /* 추가 */
}

/* 추가: 테이블 전체 셀에 대한 스타일 */
.container .card .dividend-table * {
  border-left: 0 !important;
  border-right: 0 !important;
}

.amount {
  font-weight: 700;
  color: #1a6dff;
  font-size: 15px;
}

.highlight-box {
  background: #f1f5ff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.highlight-box-title {
  font-size: 15px;
  color: #1a6dff;
  margin-bottom: 16px;
  font-weight: 700;
}

.info-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #f8f9fc;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
  margin-right: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.info-tag-value {
  font-weight: 700;
  color: #1a6dff;
  margin-left: 8px;
  font-size: 16px;
}

.tags-section {
  margin: 60px 0 30px 0; /* 상단 여백 증가 */
  padding: 20px;
  background: #f8f9fc;
  border-radius: 12px;
}

.tags-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eaeaea;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* 태그 간격 증가 */
  padding: 10px 0;
  justify-content: flex-start; /* 왼쪽 정렬 */
  align-items: center;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #2563eb;
  color: white;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  letter-spacing: 0.5px; /* 글자 간격 살짝 증가 */
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.15); /* 그림자 효과 */
}
.tag-item:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.institutional-info-description {
  margin-top: 30px;
  padding: 24px;
  background: #f8f9fc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.institutional-info-description p {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  white-space: pre-line;
  word-break: keep-all;
}

.institutional-info-description strong {
  color: #1e40af;
  font-weight: 600;
}

.additional-report-section {
  margin: 40px 0;
  padding: 15px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.additional-report-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.report-header {
  text-align: center;
  margin-bottom: 20px;
}

.report-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}

.report-subtitle {
  color: #4b5563; /* 색상을 좀 더 진하게 변경 */
  font-size: 1.25rem; /* 1rem에서 1.25rem으로 증가 */
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500; /* 폰트 두께 증가 */
}

.report-content {
  background: white;

  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.report-content figure {
  margin: 0;
}

.wp-block-embed__wrapper {
  padding: 15px;
  background: #f1f5ff;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2563eb;
  word-break: break-all;
}

.wp-element-caption {
  text-align: center;
  color: #4b5563;
  font-size: 0.95rem;
  margin-top: 10px;
  font-weight: 500;
}

.caption-icon {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .container {
    padding: 2px;
  }

  .info-description-item {
    flex-direction: column;
    gap: 4px;
  }

  .info-description-title {
    min-width: auto;
  }
  .institutional-info-description {
    padding: 16px;
    margin-top: 20px;
  }

  .institutional-info-description p {
    font-size: 13px;
  }

  .additional-report-section {
    padding: 15px;
    margin: 30px 0;
  }

  .report-subtitle {
    font-size: 0.9rem;
  }
}

.analyst-table {
  margin-top: 20px !important;
  width: 100% !important;
  border-collapse: collapse !important;
  background: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}
.analyst-table thead {
  background: #f8f9fa !important;
}
.analyst-table th {
  padding: 12px 16px !important;
  text-align: left !important;
  color: #495057 !important;
  font-weight: 600 !important;
  border-bottom: 2px solid #e9ecef !important;
  background: #f8f9fa !important;
}
.analyst-table td {
  padding: 12px 16px !important;
  border-bottom: 1px solid #e9ecef !important;
  color: #212529 !important;
  background: #fff !important;
}
.analyst-table tr:hover {
  background-color: #f8f9fa !important;
}
.badge {
  display: inline-block !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  background: #e9ecef !important;
  color: #495057 !important;
}
.price-change {
  color: #2b96ed !important;
}

.stock-chart-section {
  width: 100%;
  margin: 20px 0;
  padding: 15px;
}

.chart-outer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.chart-scroll-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.chart-scroll-container:active {
  cursor: grabbing;
}

.chart-container {
  min-width: 700px;
  height: 400px;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .chart-container {
    height: 300px;
  }

  .stock-chart-section {
    padding: 10px 5px;
  }
}

.tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nasdaq-news-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f8fafc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.nasdaq-news-container .section-title {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
}

.nasdaq-news-container .news-items {
  margin-top: 1.5rem;
}

.nasdaq-news-container .news-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nasdaq-news-container .news-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.nasdaq-news-container .news-content {
  flex: 1;
  min-width: 0;
}

.nasdaq-news-container .news-icon {
  flex-shrink: 0;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  color: #0284c7;
}

.nasdaq-news-container .news-title:hover {
  color: #0284c7;
}

.nasdaq-news-container .news-title {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0f172a;
  text-decoration: none;
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

.nasdaq-news-container .news-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  position: relative;
}

.nasdaq-news-container .news-datetime {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #64748b;
  font-size: 1.2rem;
}

.nasdaq-news-container .news-date {
  color: #0284c7;
  font-weight: 500;
}

.loading-container {
  padding: 2rem;
}

.nasdaq-news-container .news-source {
  position: absolute;
  right: 0;
  top: -2.5rem;
  padding: 4px 12px;
  border-radius: 15px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 1.2rem;
  font-weight: 500;
}
.error-message {
  color: #dc3232;
  padding: 1rem;
  margin: 1rem 0;
  background-color: #fcf0f0;
  border-left: 4px solid #dc3232;
}
.date-header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 4px solid #0073aa;
}

.date-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
}

.indented {
  margin-left: 2rem;
  position: relative;
}

.indented::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  border-left: 1px solid #eee;
}

.realtime-indicator {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.clock-icon {
  font-size: 1.8rem;
  color: #0284c7;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -2px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* news-item 호버 시 실시간 표시기 강조 */
.news-item:hover .pulse-dot {
  animation-duration: 1s;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.last-update {
  display: flex;
  align-items: center;
}

.update-time {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #0284c7;
  font-size: 2rem; /* 시간 텍스트 크기 증가 */
}

.update-time .clock-icon {
  font-size: 2rem; /* 시계 아이콘 크기 증가 */
  color: #0284c7;
  vertical-align: middle;
  line-height: 1;
}

.currentTime {
  font-weight: 500;
  vertical-align: middle;
  line-height: 1;
}

.news-description-box {
  background-color: #f8f9fa;
  border-left: 4px solid #3182ce;
  padding: 12px 16px;
  margin: 12px 0 20px 0;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #4a5568;
  line-height: 1.5;
}

.news-description-box p {
  margin: 0;
}

.section-title-group {
  margin-bottom: 0.5rem;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
  .nasdaq-news-container {
    margin: 1rem;
    padding: 1.5rem;
  }

  .nasdaq-news-container .section-title {
    font-size: 1.8rem;
  }

  .nasdaq-news-container .news-item {
    gap: 1rem;
    padding: 1.2rem;
  }

  .nasdaq-news-container .news-title {
    font-size: 1.4rem;
  }

  .nasdaq-news-container .news-datetime {
    font-size: 1rem;
  }
}

#sec-url-container {
  max-width: 900px;
  padding: 2px;
  font-family: Arial, sans-serif;
}
.form-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.file-details {
  color: #666;
  font-size: 14px;
}

.date {
  margin-bottom: 4px;
}

.company-names {
  color: #444;
  line-height: 1.4;
}

.search-form {
  margin: 30px 0;
}

.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

#symbolInput {
  width: 100%;
  height: 60px; /* 높이 증가 */
  padding: 0 20px; /* 좌우 패딩 추가 */
  font-size: 24px; /* 폰트 크기 증가 */
  border: 2px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #333;
  background-color: #fff;
}

#symbolInput:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

#symbolInput::placeholder {
  color: #999;
  font-size: 20px; /* 플레이스홀더 폰트 크기도 증가 */
}

.form-selection {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.search-form button {
  min-width: 100px; /* 최소 너비 설정 */
  height: 60px;
  font-size: 20px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex; /* 가운데 정렬을 위한 flex */
  align-items: center; /* 세로 중앙 정렬 */
  justify-content: center; /* 가로 중앙 정렬 */
  white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}
.form-selection h4 {
  margin: 0 0 10px 0;
  color: #333;
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}

.form-checkbox:hover {
  background-color: #f0f0f0;
}

.form-checkbox input {
  margin: 0;
}

button {
  background-color: #0066cc;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #0052a3;
}

#loading {
  text-align: center;
  padding: 20px;
  color: #666;
}

.url-item {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.company-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.file-info {
  margin-bottom: 8px;
}

.separator {
  margin: 0 8px;
  color: #999;
}

.sec-link {
  color: #0066cc;
  text-decoration: none;
  word-break: break-all;
  display: block;
  font-family: monospace;
  margin-top: 8px;
  font-size: 13px;
}

.sec-link:hover {
  text-decoration: underline;
}

.error {
  color: #dc3545;
  padding: 10px;
  background-color: #f8d7da;
  border-radius: 4px;
}

h3 {
  color: #333;
  margin-bottom: 15px;
}
.intro-container {
  max-width: 100%;
  padding: 4px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.intro-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.intro-header h1 {
  margin: 0;
  font-size: 28px;
  color: #2c3e50;
}

.badge {
  background-color: #3498db;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.intro-description {
  font-size: 18px;
  color: #34495e;
  line-height: 1.5;
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h3 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 18px;
}

.feature-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.start-search {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #f0f7ff;
  border-radius: 8px;
}

.start-search p {
  margin: 0;
  color: #2c3e50;
  font-size: 16px;
  font-weight: 500;
}

.sec-form-info {
  margin: 20px 0;
  padding: 12px 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.sec-form-info h4 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 16px;
}

.sec-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px;
}

.sec-form-item {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
  padding: 2px 0;
  margin: 0;
}

.sec-form-item strong {
  color: #0066cc;
}

@media (max-width: 768px) {
  .intro-container {
    padding: 2px;
  }

  .intro-header h1 {
    font-size: 24px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 15px;
  }

  .sec-form-grid {
    grid-template-columns: 1fr;
  }
}

.institutional-analysis {
  padding: 1rem;
  background: #f9f9fb;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.institutional-info-description {
  background: #f7f9fb;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;

  line-height: 1.8;
}

.institutional-info-description p {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  white-space: pre-line;
  word-break: keep-all;
}

.institutional-info-description strong {
  color: #1e40af;
  font-weight: 600;
  display: block;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.highlight-quarter {
  color: #1e3a8a;
  font-weight: bold;
  display: block;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .institutional-info-description {
    padding: 16px;
    margin-top: 20px;
  }

  .institutional-info-description p {
    font-size: 13px;
  }
}

.holdings-container {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.positive-change {
  color: #169c2f;
  font-weight: bold;
}

.negative-change {
  color: #e63946;
  font-weight: bold;
}
