  /* ===== BASIC STYLES ===== */
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: linear-gradient(to bottom right, #faf5ff, #ffffff);
      margin: 0;
      padding: 20px;
      color: #333;
    }

    .container {
      max-width: 360px;
      margin: auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(128, 0, 128, 0.15);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .container:hover {
      transform: scale(1.01);
    }

    /* ===== TABLE STYLES ===== */
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }

    td {
      border-bottom: 1px solid #e0d4f7;
      padding: 10px 12px;
    }

    tr:last-child td {
      border-bottom: none;
    }

    .bbpt {
      background: #e9d5ff;
      color: #4b0082;
      font-weight: bold;
      font-size: 16px;
      text-align: center;
      letter-spacing: 0.5px;
      padding: 10px;
    }

    .bpt {
      color: #333;
       font-weight: bold;
    }

    .tim {
      text-align: right;
      color: #6a0dad;
       font-weight: bold;
    }

    /* ===== SPECIAL ROWS ===== */
    .via {
      background: #faf5ff;
      font-size: 14px;
      color: #555;
      line-height: 1.5;
    }

    .via b {
      color: #d00000;
    }

    /* ===== BACK BUTTON ===== */
    .back-btn {
      display: inline-block;
      background: linear-gradient(to right, #800080, #a64ca6);
      color: white;
      padding: 8px 18px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 3px 8px rgba(128, 0, 128, 0.25);
      margin: 15px auto 0;
      text-align: center;
      transition: all 0.2s ease;
    }

    .back-btn:hover {
      background: linear-gradient(to right, #6a0dad, #9932cc);
      transform: translateY(-2px);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 400px) {
      body {
        padding: 25px;
      }
      table {
        font-size: 14px;
      }
      .bbpt {
        font-size: 15px;
      }
    }