/* styles.css */
h1{
    text-align: center;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}


tr:nth-child(even) {
    background-color: #f2f2f2;
}

th:first-child,
td:first-child,
th:nth-child(2),
td:nth-child(2) {
    width: 120px; 
}

input[type="text"],
input[type="date"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #fde800;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.rank {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #333; /* Choose your desired text color */
    background-color: #f0f0f0; /* Choose your desired background color */
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

button:hover {
    background-color: #e0e333;
}

#addRowButton, #addRollButton {

    color: black;

    margin: 10px 0;
}


@media (max-width: 600px) {
    table {
        width: 100%;
    }
    th, td {
        padding: 8px;
    }
}
.container2 {
    display: flex;
    justify-content: center;
}
    .container {
    
        position: relative;
        width: 100%;        
        margin: 0;
        padding: 0;

      }
  
      .image {
        width: 100%;
        height: auto; 
        display: block; 
        margin: 0;
        padding: 0;
      }
  
      .text {
        position: absolute;
        top: 50%;
        left: 50%; 
        transform: translate(-50%, -50%); 
        color: white; 
        background: rgba(0, 0, 0, 0.7); 
        padding: 30px; 
        text-align: center; 
      }

      @import url(https://fonts.googleapis.com/css?family=Raleway);

    body {
      color: #333;
      background: #fcfcfc;
      font-family: 'Raleway', sans-serif;
      overflow-x: hidden;
    }
    
    .faq-header{
      font-size: 42px;
      border-bottom: 1px dotted #ccc;
      padding: 24px;
    }
    
    .faq-content {
      margin: 0 auto;
    }
    
    .faq-question {
      padding: 20px 0;
      border-bottom: 1px dotted #ccc;
    }
    
    .panel-title {
      font-size: 24px;
      width: 100%;
      position: relative;
      margin-left: 20px;
      padding: 10px 10px 0 48px;
      display: block;
      cursor: pointer;
    }
    
    .panel-content {
      font-size: 20px;
      padding: 0px 14px;
      margin: 0 40px;
      height: 0;
      overflow: hidden;
      /* z-index: -1; */
      position: relative;
      opacity: 0;
      -webkit-transition: .4s ease;
      -moz-transition: .4s ease;
      -o-transition: .4s ease;
      transition: .4s ease;
    }
    
    .panel:checked ~ .panel-content{
      height: auto;
      opacity: 1;
      padding: 14px;
    }
    
    .plus {
      position: absolute;
      margin-left: 20px;
      margin-top: 4px;
      z-index: 0;
      font-size: 42px;
      line-height: 100%;
      -webkit-user-select: none;    
      -moz-user-select: none;
      -ms-user-select: none;
      -o-user-select: none;
      user-select: none;
      -webkit-transition: .2s ease;
      -moz-transition: .2s ease;
      -o-transition: .2s ease;
      transition: .2s ease;
    }
    
    .panel:checked ~ .plus {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    
    .panel {
      display: none;
    }
    #box{
        width: 100%;
        height: 30vh;
        background-color: #ffb43c;
    }
    #box2{
        position: relative;
        height: 50vh;
        border-radius: 50%;
        background-color: #ffb43c;
        margin-top: -25vh;
    }
    #mid_box{
        border-radius: 20px;
        padding-top :10px ;
        z-index:2;
        width:30%;
        display:flex;
        flex-direction: column;
        align-items: center;
        gap:10px;
    }
    #mid_box button{
        font-size: large;
        font-weight: bolder;
        min-width:140px;
        width:60%;
        height: 60%;
    }
    #mid_box p{
        font-size: 1.8rem;
    }
    #mid_box input{
        height: 25px;
        font-size:1.2rem;
    }
    body{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10vh 5vw;
        background-color: #4e3000;
    }
    #main{
        width:90%;
        border: 3px solid white;
        border-radius: 40px;
        overflow: hidden;
        background-color: white;
    }
    p{
        text-align: center;
        font-size: large;
        font-weight: 700;
    }

  


