.loader-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    z-index: 9999;
  }
  .loader-div .loader-content {
    display: flex;
    flex-direction: column;
    width: 600px;
    justify-content: center;
    align-items: center;
    border-radius: 10%;
}
body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
  }

  .container {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  h1 {
    text-align: center;
    color: #333;
  }

  label {
    font-weight: bold;
    display: block;
    margin: 15px 0 5px;
  }

  input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }

  input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
  }

  button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  button:hover {
    background-color: #0056b3;
  }

  #resultado {
    margin-top: 30px;
  }
  .circulos {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 30px auto;
}

.circulo {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e7eaed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #222;
    transition: 0.3s;
}

.circulo.principal {
    background-color: #009688;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

h5{
    text-align: center;
}

.inline-button{
  width: fit-content!important;
}
