  body {
      font-family: Arial, sans-serif;
      max-width: 500px;
      margin: 0 auto;
      background-color: #f5f5f5;
      overscroll-behavior-y: contain;
      padding-top: 10px;
      background: #01a982;
      background: linear-gradient(to bottom right, #01a982 0, #60ae80 100%);
  }

  .news-container {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-out;
  }

  .news-list {
      list-style: none;
      padding: 0;
  }

  .news-item {
      padding: 15px;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s;
  }

      .news-item:hover {
          background-color: #f8f9fa;
      }

      .news-item a {
          text-decoration: none;
          color: #333;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 15px;
      }

  .news-image {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 4px;
  }

  .news-content {
      flex: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .news-title {
      font-size: 1.1em;
      margin-right: 15px;
  }

  .news-meta {
      background: #0090FF;
      border-radius: 18.5px;
      border-radius: 18.5px;
      text-align: center;
      color: white;
      height: 30px;
      line-height: 30px;
      width: 100px;
  }

  .btn {
      text-align: center;
  }

  .btntxt {
      color: #ff0000;
      font-weight: bold;
      margin-bottom: 5px;
  }

  .header-actions {
      text-align: left;
      background-color: #007bff;
      color: white;
      padding: 8px 15px;
      text-decoration: none;
      border-radius: 4px;
  }

  .ul, li {
      padding: 0;
      margin: 0;
      list-style: none;
  }

  .footer-cont {
      font-size: 13px;
      color: #ddd;
      margin-top: 50px;
      padding: 10px;
  }

      .footer-cont a {
          color: #ddd;
      }