/* World Flags stylesheet */ 

a {
  text-decoration: none;
}

.activity {
  border: 0;
  padding: 0%;
}

.icon-container {
    margin: auto;
    width: 40px;
    height: 40px;
    overflow: hidden;
    padding-bottom: 4px;
}

.round-img {
    width: 100%;
    height: 100%;
    clip-path: circle(50%);
}

.btn-group .button {
    background-color: #040475; /*   #046140; */
    border: 1px solid white; 
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    cursor: pointer;
    float: left;
    height: 48px;
}
  .btn-group .button:disabled {
      cursor: auto;
      opacity: 0.7; 
  }
    
  .btn-group .button:not(:last-child) {
    border-right: none; 
  }
        
  .btn-group .button:hover {
      background-color: #0b0bad;    /* #3e8e41; */
  }

  div {
    text-align: center;
  }

  .infoDiv {
    padding-top: 40px; 
    padding-bottom: 10px; 
  }

 .infoDiv .logo {
    position: absolute;
    margin-top: 62px;   /* 62 online; 102 in app  */
    top: 0px;
    left: 10px;
  } 
  
  h1 {
    font-size:18px;
  }

  .pCountry {
    font-size:16px;
  }

  .selCountry {
    font-size:16px;
  }

  .pCapital {
    font-size:16px;
  }

  .round-button {
  background-color: #040475; /* #046140;  */
   border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 11px; 
    cursor: pointer;
    height: 42px;
    width: 42px;
    border-radius: 50%;
  }

  .round-button:disabled {
      cursor: auto;
      opacity: 0.7; 
  }

  .round-button:hover {
      background-color: #0b0bad;  /* #3e8e41;  */
  }

  .gameButton {
      height: 28px; 
      width: 64px;
  }

  .alert {
      width: 300px;
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: white;
      border: 1px solid #ccc;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  }

  .alert-title {
      text-align: left;
      font-size: 18px;  
      font-weight: bold;  
      margin-bottom: 10px;
  }

  .alert-text {
      text-align: left;
  }

  .alert-button {
    margin-top: 16px;
    margin-left: 240px;
    width: 60px;
  }

  .tooltip-container {
    position: relative;
    display: inline-block;
  }

  progress {
      width: 100%;
      height: 4px;
      visibility: hidden;
  } 

  .tooltip-container .image {
      border: 1;  
      display: block;
      margin-left: auto;
      margin-right: auto;
  }

  .tooltip-container .tooltip-text {
    margin-top: 9px;  /* 9 online; 11 in app */
    visibility: hidden;
    width: fit-content;  
    height: fit-content;    
    max-width: 300px;
    background-color: LemonChiffon;   
    color: black;    
    border-style: solid;
    border-color: darkgray; 
    border-width: thin;
    text-align: left;
    border-radius: 5px; 
    padding: 3px 5px;
    top: 10px;
    left: 0px; 
    position: absolute;
    z-index: 1;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
}

.optionList {
    position: relative;
    display: inline-block;
    width: 240px;
}
    
.optionList input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    font-size: 14px;
}
    
.optionList ul {
      list-style: none;
      margin: 0;
      padding: 0;
      border: 1px solid #ccc;
      max-height: 292px;   
      overflow-y: auto;
      position: absolute;
      width: 100%;
      background: white;
      display: none;
      z-index: 1000;
}
    
.optionList ul li {
    text-align: left;
    padding: 8px;
    cursor: pointer;
}
    
.optionList ul li:hover {
    /* prevent confusion with active */
    background-color: lightgray;
}
    
.optionList ul li.active {
    background-color: #007BFF;
    color: white;
}

.testButtons {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;   /* 80px online, 120px in app */
  text-align: center;
}

.inline-text {
  margin: auto;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.spacer1 {
  width: 16px; 
  display: inline-block;
} 

.spacer2 {
width: 64px; 
display: inline-block;
}

#overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2); 
      z-index: 1000;      
    }