body {
    background-color: rgb(25,25,25); 
  }
  
  .toggle {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .button {
    border-radius: 30% !important;
    font-size: 1.5em;
    font-family: monospace;
    background-color: lightgray;
  }
  
  #switches {
    position: absolute;
    font-family: 'Original Surfer', cursive;
    margin-left: 35px;
    margin-top: 110px;
  }
  
  .text2 {
    position: absolute;
    font-family: 'Arial', cursive;
    margin-left: 96px;
    margin-top: 200px;
  }
  
  .text1 {
    position: absolute;
    font-family: 'Arial', cursive;
    margin-left: -35px;
    margin-top: 142px;
  }
  
  .text1 span:last-child {
    padding-left: 70px;
  }
  
  #title {
    font-family: 'Arial', cursive;
    position: absolute;
    font-size: 40px;
    margin-left: 55px;
    margin-top: 40px;
  }
  
  #turn {
    position: absolute;
    background: #330000;
    color: red;
    font-family: courier;
    font-size: 20px;
    height: 30px;
    width: 50px;
    margin-left: 99px;
    margin-top: 170px;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
  }
  
  #outer-circle {
    background: #385a94;
    border-radius: 50%;
    height: 500px;
    width: 500px;
    position: relative;
    border-style: dashed;
    border-width: 10px;
    margin: auto;
    margin-top: 60px;
    box-shadow: 2px 2px 15px 6px #888888;
  }
  
  #topleft {
    position: absolute;
    height: 250px;
    width: 250px;
    border-radius: 250px 0 0 0;
    -moz-border-radius: 250px 0 0 0;
    -webkit-border-radius: 250px 0 0 0;
    background: darkgreen;
    top: 50%;
    left: 50%;
    margin: -250px 0px 0px -250px;
    border-style: double;
    border-width: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  #topright {
    position: absolute;
    height: 250px;
    width: 250px;
    border-radius: 0 250px 0 0;
    -moz-border-radius: 0 250px 0 0;
    -webkit-border-radius: 0 250px 0 0;
    background: darkred;
    top: 50%;
    left: 50%;
    margin: -250px 0px 0px 0px;
    border-style: double;
    border-width: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  #bottomleft {
    position: absolute;
    height: 250px;
    width: 250px;
    border-radius: 0 0 0 250px;
    -moz-border-radius: 0 0 0 250px;
    -webkit-border-radius: 0 0 0 250px;
    background: goldenrod;
    top: 50%;
    left: 50%;
    margin: 0px -250px 0px -250px;
    border-style: double;
    border-width: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  #bottomright {
    position: absolute;
    height: 250px;
    width: 250px;
    border-radius: 0 0 250px 0;
    -moz-border-radius: 0 0 250px 0;
    -webkit-border-radius: 0 0 250px 0;
    background: darkblue;
    top: 50%;
    left: 50%;
    margin: 0px 0px -250px 0px;
    border-style: double;
    border-width: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  #inner-circle {
    position: absolute;
    background: grey;
    border-radius: 40%;
    height: 250px;
    width: 250px;
    border-style: dashed;
    border-width: 5px;
    top: 50%;
    left: 50%;
    margin: -125px 0px 0px -125px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  .scoreboard {
    position: fixed;
    background-color: rgba(40, 40, 40, 0.95);
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    border: 2px solid #385a94;
    box-shadow: 0 0 15px rgba(136, 136, 136, 0.5);
    color: white;
    transition: all 0.3s ease;
    max-width: 160px;
    bottom: 20px;
    right: 20px;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 200px;
    z-index: 1000;
    margin: 0;
  }

  .scoreboard h2 {
    margin: 0 0 15px 0;
    text-align: center;
    color: #888888;
  }

  .menu-button {
    display: block;
    width: 80%;
    margin: 15px auto;
    padding: 15px;
    font-size: 1.2em;
    background-color: #385a94;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .menu-button:hover {
    background-color: #2a4370;
  }

  #fullScoresList {
    margin-top: 20px;
  }

  .full-score-entry {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: 5px 0;
    background-color: rgba(50,50,50,0.8);
    border-radius: 5px;
  }

  #fullScoreboard .modal-content {
    max-width: 400px;
    width: 90%;
  }


  
  
  .score-entry {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding: 8px;
    border-radius: 5px;
    background-color: rgba(50, 50, 50, 0.8);
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
  }

  .modal-content {
    background-color: rgb(40,40,40);
    font-family: Arial, Helvetica, sans-serif;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid #385a94;
    width: 300px;
    border-radius: 15px;
    color: white;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
  }

  .close:hover {
    color: white;
  }

  #authToggle {
    text-align: center;
    margin-top: 15px;
  }

  #authToggle a {
    color: #385a94;
    cursor: pointer;
    text-decoration: none;
  }

  #authToggle a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .scoreboard {
        bottom: 10px;
        right: 10px;
        width: 180px;
        padding: 10px;
    }

    #outer-circle {
        margin-top: 140px !important;
    }

    .score-entry {
        flex-direction: column;
        align-items: center;
        padding: 5px;
    }

    .scoreboard h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .player, .score {
        font-size: 0.9em;
    }

    #playerRank {
        font-size: 0.8em;
        margin-top: 10px;
    }


    @media (max-width: 480px) {
      .scoreboard {
          width: 95%;
          max-width: none;
          right: 2.5%;
          bottom: 70px;
      }
    
    #outer-circle {
        margin-top: 160px !important;
        transform: scale(0.85);
    }
  }

  #outer-circle {
      margin-top: 60px;
      transform: scale(1);
      transition: transform 0.3s ease;
  }

  @media (max-width: 768px) {
      #outer-circle {
        margin-top: 140px;
        transform: scale(0.9);
      }
  }

  @media (max-width: 480px) {
      #outer-circle {
        margin-top: 160px;
        transform: scale(0.8);
      }
  }

  .return-button-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }

  .return-button {
    background-color: #385a94 !important;
    color: white !important;
    border-radius: 15px !important;
    padding: 10px 20px !important;
    font-size: 1em !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }

  .return-button:hover {
    background-color: #2a4370 !important;
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .return-button-container {
        top: 10px;
        left: 10px;
    }

    .return-button {
      padding: 8px 15px !important;
      font-size: 0.9em !important;

    }
  }

  .logout-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }

  #logoutBtn {
    background-color: #385a94 !important;
    color: white !important;
    border-radius: 15px !important;
    padding: 10px 20px !important;
    font-size: 1em !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: none;
  }

  #logoutBtn:hover {
    background-color: #2a4370 !important;
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .logout-container {
        bottom: 10px;
        right: 10px;
    }

    #logoutBtn {
      padding: 8px 15px !important;
      font-size: 0.9em !important;
    }
  }

  

}
