/********** Template CSS **********/



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Button Styles */
 .button.roundstates {
    display: inline-block;
    width:220px;
    padding: 10px 0px;
    margin: 10px 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px; /* Half the height for roundness */
    background-color: #fff1eb; /* Initial color */
    color: #000000; /* Text color */
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid;
    border-color:#ffb79d;
    letter-spacing: 0.01em;
  } 
  
  /* Hover Effect */
.button.roundstates:hover {
    background-color: #ff7d4d;
    color: #ffffff;/* Color on hover */
    border: none;
    letter-spacing: 0.19em;
    box-shadow: 0 0 35px #ff7d4d;
  }
  
  .button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Four columns */
    gap: 10px; /* Adjust the space between buttons */
}

.button.squarecle {
  display: inline-block;
  width:220px;
  height:75px;
  padding: 10px 0px;
  margin: 10px 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 25px; /* Half the height for roundness */
  background-color: #fff1eb; /* Initial color */
  color: #000000; /* Text color */
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid;
  border-color:#ffb79d;
  letter-spacing: 0.01em;

}


.button.squarecle:hover {
  background-color: #ff7d4d;
  color: #ffffff;/* Color on hover */
  border: none;
  letter-spacing: 0.16em;
  box-shadow: 0 0 35px #ff7d4d;
}



/* responsive grid */
@media (max-width: 768px) {
  .button-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 506px) {
  .button-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-self: center;
  }
}

/* Header */

.myHeading {
  font-weight: 600;
}


.button.roundstates2 {
  display: inline-block;
  width:220px;
  padding: 8px 0px;
  margin: 10px 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px; /* Half the height for roundness */
  background-color: rgba(255, 68, 0, 0.623);/* Initial color */
  color: #000000; /* Text color */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  border: 1px solid;
  border-color:#ffb79d;
  letter-spacing: 1px;
} 

.button.roundstates2:hover {
  background-color: rgba(243, 231, 226, 0.623);
  color:black;/* Color on hover */
  border: none;
  letter-spacing: 0.19em;
  box-shadow: 0 0 35px #ff7d4d;
}
