.others-download-table {
      max-width: 960px;
      margin: auto;
      background-color: #ffffff;
      border: 1px solid #cbd5e1;
      border-radius: 10px;
      overflow-x: auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }

    .others-download-table table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
    }

    .others-download-table th,
    .others-download-table td {
      padding: 12px 15px;
      text-align: center;
      border: 1px solid #f0e2f0;
      font-size: 16px;
    }

    .others-download-table th {
      background-color: #c9c9c9;
      color: #000000;
      font-weight: 700;
    }

    .others-download-table tr:nth-child(even) {
      background-color: #fcf0fd;
    }

    .download-btn {
      background-color: #772B91;
      color: #fff;
      padding: 8px 14px;
      border-radius: 5px;
      border: none;
      text-decoration: none;
      font-size: 15px;
      display: inline-block;
      transition: background 0.2s ease;
    }

    .download-btn:hover {
      background-color: #501963;
    }

    @media (max-width: 600px) {
      .others-download-table th,
      .others-download-table td {
        font-size: 14px;
        padding: 10px;
      }

      .download-btn {
        font-size: 13px;
        padding: 6px 10px;
      }
    }