    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    #floating-box {
      margin: 0;
      padding: 0;
      position: fixed;
      top: -400px;
      right: 50%; /* Center the box horizontally */
      transform: translateX(50%);
      background-color: #fff;
      border-radius: 10px;
      width: 300px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: top 0.8s ease-in-out;
      overflow: hidden;
	  z-index: 9999;
    }

    #floating-box.hidden {
      top: -400px;
    }

    .dialog-box {
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
    }

    .dialog-box-icon {
      width: 30px;
      margin-right: 10px;
    }

    .dialog-box-title {
      margin-top: 5px;
      font-weight: bold;
      font-size: 14px;
      display: flex;
      align-items: center;
    }

    .dialog-box-message {
      margin-top: 5px;
      font-size: 12px;
      color: #ccc;
      font-weight: normal;
      white-space: nowrap; /* Prevent text from wrapping */
    }

    .ctas-container {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    .cta {
      margin: 3px;
      padding: 5px 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    .cta-later {
      background-color: #e0e0e0;
      color: #888;
    }

    .cta-allow {
      background-color: #007bff;
      color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }