.table-wrapper {
    overflow-x: auto;
  }

  .custom-form {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
  }

  .input-container {
    position: relative;
    border: 1px solid #2051E5;
    /* Blue border around each input box */
    margin-right: 15px;
    border-radius: 5px;
  }

  .level-name {
    position: absolute;
    top: -10px;
    /* Adjust distance from top */
    left: 10px;
    /* Adjust distance from left */
    background-color: #f8f9fa;
    padding: 0 5px;
    color: #2051E5;
  }

  .form-control {
    border: none;
    /* Remove default input box border */
    border-radius: 0;
    /* Remove default input box border radius */
    outline: none;
    /* Remove focus outline */
    color: #000;
    /* padding: 10px; */
  }

  .btn-add-event {
    background-color: #5040A1;
    color: #fff;
    border-radius: 20px;
    width: 180px;
    margin-left: 10%;
  }

  /* -------------------------------- */
  /* Live Events & Show */
  /* -------------------------------- */

  .even-heading {
    background-color: white;
    position: relative;
    z-index: 1;
  }

  .event {
    font-family: "JetBrains Mono", monospace;
    /* Apply JetBrains Mono font to the entire section */
    font-optical-sizing: auto;
    padding-left: 22%;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #061543 0%, #122D7D 42%, #0B1F5A 73%, #12245A 100%);
    background-color: #061540;
    width: 100%;
    /* height: 100vh; */
  }

  .divider {
    width: 201px;
    height: 1px;
    position: relative;
    border-top: 1px solid white;
    /* Change border color to white or any other color that contrasts well with the background */
    box-sizing: border-box;
    opacity: 0.6;
    z-index: 1;
    margin-top: 1%;
    margin-bottom: 1%;
  }

  .even-box {
    background-color: white;
    height: auto;
    /* margin-right: 2%; */
    padding: 2%;
    border: 1px solid #D9D9D9;
    font-family: "JetBrains Mono", monospace;
    /* Apply JetBrains Mono font to the paragraphs inside even boxes */
  }

  .even-arrow-section {
    color: white;
    text-align: right;
    padding-right: 27%;
  }

  .even-arrow-circle {
    border-radius: 50%;
    border: none;
    background-color: white;
    width: 40px;
    height: 40px;
  }

  .even-arrow {
    color: #000;
  }

  .even-box p {
    color: #424E60;
    text-align: left;
    font-size: 14px;
  }

  .custom-form2 {
    border: 1px solid #D9D9D9;
  }

  /* CSS for checkbox styling */
  .checkbox-custom {
    width: 17px;
    /* Adjust as needed */
    height: 17px;
    /* Adjust as needed */
    position: relative;
    /* Add this line */

  }

  .checkbox-custom:checked:before {
    content: '\2713';
    /* Checkmark symbol */
    font-size: 17px;
    /* Adjust as needed */
    color: #fff;
    /* Color of the checkmark */
    position: absolute;
    /* Add this line */
    top: 50%;
    /* Add this line */
    left: 50%;
    /* Add this line */
    transform: translate(-50%, -50%);
    /* Add this line */
  }

  .checkbox-custom:checked {
    background-color: #F51202;
    /* Change background color to red when checked */
    border-color: #F51202;
    /* Change border color to red when checked */
  }

  .checkbox-custom-label {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 30px;
    /* Adjust as needed */
  }

  @media (max-width: 1028px) {
    .input-container {
      margin: 3%;
    }

    .btn-add-event {
      margin-left: 0%;
    }

  }