 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: #0f1114;
      color: #ffffff;
      line-height: 1.4;
      padding: 16px;
    }
    .container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
      align-items: start;
    }
    .alert-banner {
      grid-column: 1 / -1;
      background-color: rgba(255, 69, 58, 0.1);
      color: #ff453a;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    /* Banner for Unusual Options Activity */
    .alert-banner.unusual {
      background-color: rgba(255, 159, 10, 0.1);
      color: #ff9f0a;
    }
    .card {
      background-color: #1c1d21;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      border: 1px solid #2c2d33;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card:hover {
      transform: scale(1.02);
    }
    .stock-card {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .stock-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    .stock-symbol {
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .stock-price {
      font-size: 14px;
    }
    .positive { color: #32d74b; }
    .negative { color: #ff453a; }
    .setup-tag {
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
    }
    .bullish {
      background-color: rgba(50, 215, 75, 0.1);
      color: #32d74b;
    }
    .bearish {
      background-color: rgba(255, 69, 58, 0.1);
      color: #ff453a;
    }
    .action-point {
      background-color: rgba(59, 130, 246, 0.1);
      border-radius: 8px;
      padding: 12px;
      color: #60a5fa;
      font-size: 14px;
      margin: 12px 0;
      flex-grow: 1;
    }
    .section {
      border-top: 1px solid #2c2d33;
      padding-top: 12px;
      margin-top: 12px;
    }
    .section-title {
      color: #8e8e93;
      font-size: 14px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .section-title::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .target-title::before { background-color: #32d74b; }
    .risk-title::before { background-color: #ff453a; }
    .level-row {
      display: flex;
      justify-content: space-between;
      margin: 6px 0;
      font-size: 14px;
    }
    .level-label {
      color: #8e8e93;
      font-size: 12px;
    }
    .price-detail {
      font-size: 12px;
      color: #8e8e93;
    }
    .news-section, .tweets-section {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .news-item, .tweet {
      background-color: #1c1d21;
      border-radius: 8px;
      padding: 12px;
      border: 1px solid #2c2d33;
    }
    .tweet-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }
    .tweet-author {
      font-weight: 600;
      font-size: 14px;
    }
    .tweet-handle {
      color: #8e8e93;
      font-size: 12px;
    }
    .tweet-content {
      font-size: 14px;
      margin-bottom: 8px;
    }
    .tweet-meta {
      display: flex;
      justify-content: space-between;
      color: #8e8e93;
      font-size: 12px;
    }
    .news-item-title {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .news-item-summary {
      color: #8e8e93;
      font-size: 13px;
      margin-bottom: 8px;
    }
    .news-item-footer {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #8e8e93;
    }
    .read-more-btn {
      background-color: rgba(59, 130, 246, 0.1);
      color: #60a5fa;
      border: none;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 13px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .read-more-btn:hover {
      background-color: rgba(59, 130, 246, 0.2);
    }
    /* Progress bar styling */
    .progress-bar {
      background-color: #2c2d33;
      height: 8px;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      margin-top: 4px;
      margin-bottom: 8px;
    }
    .progress-bar-fill {
      background-color: #60a5fa;
      height: 100%;
      border-radius: 4px;
      transition: width 0.3s ease;
    }
    .ai-market-intel-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .ai-market-intel-label {
      font-size: 14px;
      font-weight: 600;
    }
    .ai-market-intel-value {
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .change-value {
      font-size: 12px;
    }
    .change-value.positive {
      color: #32d74b;
    }
    .change-value.negative {
      color: #ff453a;
    }
    /* Fear & Greed Index */
    .fear-greed-score {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .fear-greed-label {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

  /* Add these new styles to make the news and tweets sections scrollable */
.news-section, .tweets-section, .tweets-container {
  max-height: 1300px;
  overflow-y: auto;
  padding-right: 6px;
  margin-top: 0;
  /* Styling the scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #60a5fa #2c2d33;
}

/* Webkit scrollbar styling (for Chrome, Safari, Edge) */
.news-section::-webkit-scrollbar, 
.tweets-section::-webkit-scrollbar,
.tweets-container::-webkit-scrollbar {
  width: 6px;
}

.news-section::-webkit-scrollbar-track, 
.tweets-section::-webkit-scrollbar-track,
.tweets-container::-webkit-scrollbar-track {
  background: #2c2d33;
  border-radius: 3px;
}

.news-section::-webkit-scrollbar-thumb, 
.tweets-section::-webkit-scrollbar-thumb,
.tweets-container::-webkit-scrollbar-thumb {
  background-color: #60a5fa;
  border-radius: 3px;
}

/* Make news items and tweets more compact */
.news-item, .tweet {
  padding: 10px;
  margin-bottom: 8px;
}

/* Remove gap in the parent container */
.news-section, .tweets-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item-title {
  font-size: 14px;
  margin-bottom: 6px;
}

.news-item-summary {
  font-size: 12px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.news-item-footer {
  font-size: 11px;
  margin-top: 4px;
}

.tweet-header {
  margin-bottom: 6px;
}

.tweet-content {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.tweet-meta {
  font-size: 11px;
}

.read-more-btn {
  padding: 6px 10px;
  font-size: 12px;
  margin-top: 4px;
}

/* Make the entire container more compact */
.container {
  gap: 12px;
}

.card {
  padding: 12px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
