body {
    font-family: Arial, sans-serif;
    background-color: #2c3e50;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
  
  .game-container {
    text-align: center;
    width: 600px;
  }
  
  .hidden {
    display: none;
  }
  
  .progress {
    width: 100%;
    background-color: #ddd;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    height: 10px;
}

.progress-bar {
    width: 0%; 
    height: 20px;
    background-color: #4caf50;
    transition: width 0.3s ease;
    height: 10px;
}

  
  .bar {
    height: 20px;
    width: 0;
    background: #76c7c0;
    transition: width 0.3s;
  }
  
  .skills {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
  }
  
  .skill {
    display: flex;
    align-items: center;
  }
  
  .skill label {
    margin-right: 5px;
  }
  
  button {
    margin: 5px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #76c7c0;
    color: #2c3e50;
    font-size: 14px;
    cursor: pointer;
  }
  
  button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
  }

  th {
    background-color: #e94560;
    color: #ffffff;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
}
