      /* General Styling */
      body {
          margin: 0;
          padding: 0;
          font-family: Arial, sans-serif;
          height: 100vh;
          display: flex;
          justify-content: center;
          align-items: center;
          background-image: url('bg.jpg');
          background-size: cover;
          background-position: center;
          overflow: hidden;
          background-color: #232527;
      }

      /* Close Button */
      .user-popup .popup-close,
      .new-user-popup .popup-close {
          font-size: 20px;
          color: #c0c5cb;
          background-color: transparent;
          border: none;
          align-self: flex-end;
          cursor: pointer;
      }

      /* Heading, Avatar, and Buttons */
      .user-popup h1,
      .new-user-popup h1 {
          font-size: 26px;
          font-weight: 900;
          margin-bottom: 15px;
      }

      .user-popup .avatar-img,
      .new-user-popup .avatar-img {
          width: 100px;
          height: 100px;
          border-radius: 50%;
          margin-bottom: 15px;
      }

      .profile-link {
          width: 100%;
          margin-bottom: 20px;
      }

      .profile-btn {
          width: 70%;
          border-radius: 5px;
      }

      .profile-btn,
      .confirm-btn,
      .back-btn {
          align-items: center;
          height: 45px;
          border: none;
          border-radius: 5px;
          padding: 10px 20px;
          font-size: 16px;
          cursor: pointer;
          flex: 1;
      }

      .action-btns {
          display: flex;
          justify-content: space-between;
          gap: 10px;
          width: 100%;
          max-width: 400px;
      }

      .confirm-btn,
      .profile-btn {
          background-color: rgb(4, 145, 83);
          color: white;
          font-weight: bold;
      }

      .back-btn {
          background-color: rgb(232 151 36);
          color: white;
          font-weight: bold;
      }

      .back-btn,
      .confirm-btn {
          border-radius: 10px;
      }



      /* Responsive styling for small devices */
      @media (max-width: 576px) {
          .user-popup {
              padding: 15px;
          }

          .action-btns {
              width: 100%;
              justify-content: space-between;
          }

          .confirm-btn,
          .back-btn {
              width: calc(50% - 5px);
          }
      }

      @media (min-width: 992px) {
          .action-btns {
              max-width: 450px !important;
          }
      }

      /* Form Container and Loader Styling */
      .content-container {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100%;
          position: relative;
      }

      .loading-section {
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          position: absolute;
          text-align: center;
      }

      .app-logo {
          width: 200px;
          height: auto;
          animation: fadeIn 2s forwards;
      }

      .loading-bar {
          width: 100px;
          height: 5px;
          background-color: #fff;
          margin-top: 10px;
          animation: expand 2s forwards;
      }

      .input-form {
          background-color: #232527;
          padding: 40px;
          border-radius: 8px;
          text-align: center;
          max-width: 435px;
          width: 100%;
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
          position: relative;
      }

      .input-field {
          padding: 10px;
          width: calc(100% - 40px);
          margin: 0 auto 20px;
          font-size: 16px;
          background-color: rgba(0, 0, 0, 0.7);
          color: #bdbebe;
          border: 1px solid #707070;
          border-radius: 8px;
          display: block;
      }

      .submit-btn {
          padding: 10px 20px;
          background-color: #fff;
          color: #000;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-size: 16px;
          margin: 0 auto;
      }

      .submit-btn:hover {
          background-color: #ddd;
      }

      /* Animations */
      @keyframes fadeIn {
          0% {
              opacity: 0;
              transform: scale(0);
          }

          100% {
              opacity: 1;
              transform: scale(1);
          }
      }

      @keyframes expand {
          0% {
              width: 0;
          }

          100% {
              width: 100px;
          }
      }

      /* Popup Styling */
      .user-popup,
      .new-user-popup {
          width: 90%;
          max-width: 575px;
          display: flex;
          flex-direction: column;
          align-items: center;
          background-color: #232527;
          color: #fff;
          text-align: center;
          border-radius: 20px;
          padding: 20px;
          position: fixed;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          box-shadow: 0px 6px 18px -5px rgba(0, 0, 0, 0.3);
          z-index: 1000;
      }



      .slider-container {
          position: relative;
          width: 70%;
      }

      .slider {
          margin: 20px 0;
          width: 100%;
          height: 20px;
          background-color: #ddd;
          border-radius: 10px;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          position: relative;
      }

      .slider::-webkit-slider-thumb {
          width: 40px;
          height: 40px;
          background-color: #4CAF50;
          border-radius: 50%;
          border: none;
          cursor: pointer;
          -webkit-appearance: none;
          position: relative;
      }

      .slider::-moz-range-thumb {
          width: 40px;
          height: 40px;
          background-color: #4CAF50;
          border-radius: 50%;
          border: none;
          cursor: pointer;
          position: relative;
      }

      .slider-value {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          font-size: 14px;
          font-weight: bold;
          color: white;
          z-index: 1;
          pointer-events: none;
          /* To avoid interaction with the text */
          transition: all 0.1s ease-in-out;
      }

      .jumbotron {
          width: 450px;
          background-color: rgba(0, 0, 0, 0.7);
          padding: 20px;
          border-radius: 10px;
          text-align: center;
          margin-bottom: 20px;
      }

      .builderFont {
          font-family: Builder Sans, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
      }

      #selectRobuxAmount {
          margin-top: 0px;
      }

      #greetingHeader {
          margin-top: 0px;
      }