* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f4f6f8;
  color: #333;
  padding: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e2f;
  color: white;
  padding: 20px;
  border-radius: 8px;
}

.featured-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.article {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.article img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.kpi-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.kpi-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.chart-placeholder {
  background-color: #e0e7ff;
  height: 300px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

.alerts {
  background-color: #fff3cd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.alerts ul {
  list-style: disc;
  margin-left: 20px;
}

.filters {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.filters label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
}

.footer {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 40px;
}

    textarea {
      width: 100%;
      height: 150px;
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #ccc;
      resize: vertical;
      font-size: 16px;
      font-family: inherit;
      box-sizing: border-box;
    }

    button {
      margin-top: 20px;
      padding: 12px 24px;
      background-color: #0078D4;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #005fa3;
    }

    .full-width-image {
      width: 100%;
      height: auto;
      display: block;
    }

    .image-section {
      width: 100%;
      overflow: hidden;
    }

    .top-bar {
      background-color: #1e1e2f;
      color: #fff;
      display: flex;
      align-items: center;
      padding: 10px 20px;
      overflow-x: auto;
      white-space: nowrap;
    }

    .menu-item {
      margin-right: 25px;
      cursor: pointer;
      font-size: 15px;
      transition: color 0.3s ease;
    }

    .menu-item:hover {
      color: #00bcd4;
    }

    .menu-title {
      font-weight: bold;
      margin-right: 40px;
      font-size: 18px;
      color: #f0db4f;
    }
