   body {
     background-color: #d8e1ec;
  }
   .button {
     background-color: #edf1f6;
     color: #285498;
     padding: 6px 12px;
     text-align: center;
     text-decoration: none;
     display: inline-block;
     font-size: 14px;
     cursor: pointer;
     border: 3px solid #285498;
     border-radius: 6px;
     margin-bottom: 4px; /* Adds vertical space */
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   }
   .button:hover {
     background-color: #285498;
     color: #edf1f6;
   }
   .rounded-input {
     background-color: #edf1f6;
     color: #285498;
     padding: 8px 12px;
     text-align: left;
     text-decoration: none;
     display: inline-block;
     font-size: 16px;
     cursor: pointer;
     border: 3px solid #285498;
     border-radius: 6px;
     box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
    }
    .custom-radio {
            display: none; /* Hide the original radio button */
        }
    .custom-radio + label {
            display: inline-block;
            padding: 5px 12px;
            margin-bottom: 4px; /* Adds vertical space */
            background-color: #d8e1ec;
/*            color: #285498;*/
            border: 3px solid #285498;
            border-radius: 6px; /* Rounded corners */
            cursor: pointer;
            margin-right: 10px; /* Space between buttons */
            transition: background-color 0.3s ease;
            cursor: pointer;
            user-select: none; /* Prevents text selection */
        }
        .custom-radio:checked + label {
            background-color: #809bc3; /* Darker \when checked */
            user-select: none; /* Prevents text selection */
        }

   div.main {
     position: absolute;
     top: 50px;
     left: 20px;
     right: 20px;
     border: none;
   }
   footer {
     padding: 10px;
     pointer-events: none;
     font-size: 12px;
     text-align: center;
     color: red;
   }
