
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
    }

    h1 {
        text-align: center;
        color: #333;
        font-size: 2.8rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .question {
        margin-bottom: 20px;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: white;
    }

    .options {
        margin-top: 10px;
    }

    .option {
        padding: 8px;
        margin: 5px 0;
        cursor: pointer;
        border: 1px solid #ddd;
        border-radius: 3px;
        transition: background-color 0.3s, border-color 0.3s;
    }

    /* Correct answer */
    .correct {
        background-color: #c3e6cb;
        border-color: #2eb82e;
    }

    /* Incorrect answer */
    .incorrect {
        background-color: #f8d7da;
        border-color: #ff4d4d;
    }
        /* Floating Finish Button */
#floating-finish-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #1A2980, #26D0CE);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    max-width: 200px;
}

#floating-finish-btn.show {
    opacity: 1;
    pointer-events: auto;
}

#floating-finish-btn .badge {
    background: white;
    color: #1A2980;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}



.adminActions {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 9999; /* 👈 This ensures it's always on top */
}

  .adminButton {
    height: 60px;
    width: 60px;
    background-color: rgba(67, 83, 143, .8);
    border-radius: 50%;
    display: block;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
  }

    .adminButton i {
      font-size: 22px;
    }

  .adminButtons {
    position: absolute;
    width: 100%;
    bottom: 120%;
    text-align: center;
  }

    .adminButtons a {
      display: block;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      text-decoration: none;
      margin: 10px auto 0;
      line-height: 1.15;
      color: #fff;
      opacity: 0;
      visibility: hidden;
      position: relative;
      box-shadow: 0 0 5px 1px rgba(51, 51, 51, .3);
    }

      .adminButtons a:hover {
        transform: scale(1.05);
      }

      .adminButtons a:nth-child(1) {background-color: #ff5722; transition: opacity .2s ease-in-out .3s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(2) {background-color: #03a9f4; transition: opacity .2s ease-in-out .25s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(4) {background-color: #f44336; transition: opacity .2s ease-in-out .2s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(3) {background-color: #4CAF50; transition: opacity .2s ease-in-out .15s, transform .15s ease-in-out;}

      .adminActions a i {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
      }

  .adminToggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    top: 0; left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow .2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, .3);
  }

    .adminToggle:hover {
      box-shadow: 0 3px 6px 2px rgba(51, 51, 51, .3);
    }

    .adminToggle:checked ~ .adminButtons a {
      opacity: 1;
      visibility: visible;
    }
    


#floating-answer-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: -1000;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: auto;
    max-width: 220px;
    transition: all 0.3s ease;
}

#floating-answer-toggle:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#floating-answer-toggle label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

#floating-answer-checkbox {
    margin-left: 12px;
    transform: scale(1.2);
    cursor: pointer;
}

.option.correct {
    background-color: #d4edda;
    color: green;
}

.option.incorrect {
    background-color: #f8d7da;
    color: red;
}

#floating-finish-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 999;
    padding: 10px 20px;
    display: none;
    transition: opacity 0.3s ease;
}

#floating-finish-btn.show {
    display: block;
}