
/* Light mode styles */
    body{
      background-color: #f0f2f5;
    }
    .trend-card {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      background-color: #fff;
    }
    .trend-rank {
      font-size: 18px;
      font-weight: bold;
    }
    .trend-link {
      color: #007BFF;
      text-decoration: none;
    }
    .trend-volume {
      color: #6c757d;
    }
    .copy-btn {
      cursor: pointer;
      background-color: #007BFF;
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 5px 10px;
    }

    /* Dark mode styles */
    body.dark-mode {
      background-color: #212529;
      color: #fff;
    }
    body.dark-mode .trend-card {
      background-color: #343a40;
      border-color: #555;
    }
    body.dark-mode .trend-link {
      color: #66b0ff;
    }
    body.dark-mode .trend-volume {
      color: #adb5bd;
    }
    body.dark-mode .copy-btn {
      background-color: #66b0ff;
    }
     .modal-content.dark-mode {
      background-color: #343a40;
      color: #fff;
    }


    .tweet-card {
      max-width: 500px;
      margin: 20px auto;
      padding: 10px;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      border: 1px solid #ddd;
    }
    .profile-picture {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
    }
    .user-name {
      font-weight: bold;
    }
    .tweet-content {
      margin-top: 10px;
      font-size: 16px;
      line-height: 1.5;
    }
    .tweet-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
      color: #777;
    }
    .action {
      display: flex;
      align-items: center;
    }
    .icon {
      margin-right: 5px;
    }
    .retweets, .likes, .comments, .share {
      display: flex;
      align-items: center;
    }
    .retweets .icon, .likes .icon, .comments .icon, .share .icon {
      font-size: 18px;
      margin-right: 5px;
    }
    .days {
      color: #999;
    }

