.highlight-move {
    box-shadow: inset 0 0 3px 3px rgb(248, 248, 92);
  }

  .highlight-hint {
    box-shadow: inset 0 0 3px 3px rgb(49, 49, 226);
  }

  .highlight-available {
    box-shadow: inset 0 0 3px 3px rgb(151, 255, 147);
  }
  .loading_container {
    background-color: white;
    margin: auto;
    position: relative;
    box-sizing: border-box;
    width: auto;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px
  }

  /* Style for the loading circle */
  .loading-circle {
    border: 8px solid #f3f3f3;
    /* Light gray background */
    border-top: 8px solid #b58863;
    /* Blue color for the top part of the circle */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    /* Apply spin animation */
  }

  /* Spin animation */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }