body {
    background-color: rgba(19, 17, 26, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 540px; /* ขนาดขั้นต่ำ */
    min-height: 465px; /* ขนาดขั้นต่ำ */
    margin: 0;
    color: white;
    line-height: 26px;
    letter-spacing: 0.48px;
    word-wrap: break-word;
    font-family: "Kanit";
    font-weight: 100;
    overflow: hidden;
    position: relative; /* สำหรับ before และ after */
  }

  body::before,
  body::after {
    content: "";
    position: absolute;
    border-radius: 400px;
    filter: blur(185px);
    flex-shrink: 0;
  }

  body::before {
    top: -40%;
    right: -30%;
    background: #8ef0cc;
    width: 400px;
    height: 400px;
    opacity: 0.25;
    z-index: -2;
  }

  body::after {
    top: 60%;
    right: 60%;
    background: #7361c8;
    width: 416px;
    height: 416px;
    opacity: 0.5;
    z-index: -1;
  }

  .icon-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 2;
  }

  .logo-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 540px;
    height: 100%;
    max-height: 465px;
    text-align: center;
  }

  .group-text {
    margin: 25px;
    margin-bottom: 40px;
  }

  .text-title {
    font-size: 21px;
    margin: 20px;
  }
  span#userPackage {
    margin-bottom: 5px;
  }
  span#notifyRemainDay {
    margin-bottom: 5px;
  }
  span#expiryDate {
    margin-bottom: 5px;
  }
  .text-buttom {
    font-feature-settings: "liga" off, "clig" off;
    font-size: 21px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    margin-top: 35px;
    margin-block: auto;
  }

  .group-button {
    margin: 10px;
    margin-bottom: 50px;
  }

  .group-button button {
    margin: 0 7px;
  }

  .btnRenewal {
    width: 185px;
    height: 58px;
    color: #fff;
    text-align: center;
    font-feature-settings: "liga" off, "clig" off;
    font-family: "Kanit";
    border-radius: 10px;
    background: linear-gradient(90deg, #7361c8 0%, #8ef0cc 100%);
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.18);
    font-size: 21px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
  }

  .btnUpgrade {
    width: 185px;
    height: 58px;
    border-radius: 10px;
    border: 0.25px solid #a6b0b9;
    background: #13111a;
    color: #fff;
    font-family: "Kanit";
    text-align: center;
    font-feature-settings: "liga" off, "clig" off;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.18);
    font-size: 21px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
  }

  .text-span-not-noti {
    margin-left: 3px;
  }

  .toggle-not-noti {
    display: flex;
    align-items: center;
    text-align: center;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 14px;
    bottom: 0;
    left: 0;
    margin: 0;
    margin-top: auto;
    z-index: 1;
    position: fixed;
    padding: 10px;
  }

  .check-box-noti {
    appearance: none;
    -webkit-appearance: none; /* For Safari */
    background-color: transparent;
    border: 1px solid #ffffff;
    width: 15px;
    height: 15px;
    cursor: pointer;
    position: relative;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.1);
  }

  .check-box-noti:checked {
    background: #007bff;
    border-color: #ffffff;
  }

  .check-box-noti:checked::before {
    content: "✓";
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-family: "Kanit";
    font-weight: 300;
    line-height: 1;
  }

  .check-box-noti:hover {
    border-color: #ffffff;
  }

  .check-box-noti:focus {
    outline: none;
    border-color: #ffffff;
  }