* {
    font-family: helvetica;
    margin: 0;
    
}

body {
    visibility: hidden;
}


button {
    height: 40px;
    min-width: 90px;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    background-color: #171717;
    border-radius: 5px;
}

input[type="text"]  {
    height: 30px;
}

input[type="password"]  {
    height: 30px;
}

select {
    height: 30px;
}


.overlay-div {
      position: fixed;         /* cobre toda a tela */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* transparência */
      backdrop-filter: blur(1px);     /* opcional: desfoca o fundo */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;           /* fica acima de tudo */
}

.message-box{
    
}

.error {
    color: #ff0000;
}

.menubar {
    width: 100%;
    height: 80px;
    background-color: rgb(27, 27, 6);
    color: white;
}


.menu-item{
    height: 100%;
    display: flex;
    align-items: center;
    width: 25%;
    justify-content: center;
    cursor: pointer;
    color: white;
    text-decoration: none;
}


.menu-item:hover {
    background-color: #575757;
}

.menu-logo {
    display: flex;
    align-items: center;
    width: 23.5%;
    padding-left: 1.5%;
    float: left;
    height: 70px;
    margin-top: 5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 40px;

}

.menu-logo > span{
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.menu-options{
    width: 75%;
    height: 80px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.menu-selected{
    background-color: #575757;
}


.logo {
    height: 70px;
}


.l-quad {
    width: 49%;
    min-width: 520px;
    margin-left: 1%;
    float: left;
}

.r-quad {
    width: 49%;
    margin-left: 1%;
    float: left;
}


.l-third {
    width: 30%;
    margin-left: 1%;
    float: left;
}

.m-third {
    width: 30%;
    margin-left: 1%;
    float: left;
}

.r-third {
    width: 30%;
    margin-left: 1%;
    float: left;
}



.grid { 
        width: 550px; display: flex; flex-wrap: wrap;
}

.mini-grid { 
        width: 500px; display: flex; flex-wrap: wrap;
}

.hand {
    width: 37px;
    height: 35px;
    border: 1px solid #ababab;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    user-select: none;
    border-radius: 5px;
    margin-left: 1.5px;
    margin-top: 1px;
}


.mini-hand {
    width: 33px;
    height: 33px;
    border: 1px solid #ababab;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    user-select: none;
    border-radius: 5px;
    margin-left: 2px;
    margin-top: 1px;
}

.handName {
    position: absolute; /* Agora funciona em relação à .barra */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}


.legend-box {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    width: 150px; 
    height: 70px;
}

.legend-text {
 margin-left: 5px;
}

.legend-color {
    width: 20px;
    height: 20px;
}

.action {
    height: 100%;
    position: relative;
}



.r2 {
    background-color: #D56964;
}

.r23 {
    background-color: #bd5751;
}

.r3 {
    background-color: #bd5751;
}

.r35 {
    background-color: #bd5751;
}

.r4 {
    background-color: #bd5751;
}

.r5 {
    background-color: #bd5751;
}

.r55 {
    background-color: #bd5751;
}

.r6 {
    background-color: #bd5751;
}

.r63 {
    background-color: #bd5751;
}


.r65 {
    background-color: #bd5751;
}

.r75 {
    background-color: #bd5751;
}

.r8 {
    background-color: #bd5751;
}

.r82 {
    background-color: #bd5751;
}

.r69 {
    background-color: #bd5751;
}

.r9 {
    background-color: #bd5751;
}

.r92 {
    background-color: #bd5751;
}

.r98 {
    background-color: #bd5751;
}

.r11 {
    background-color: #bd5751;
}

.r12 {
    background-color: #bd5751;
}


.allin {
    background-color: #800c02;
}

.call {
    background-color: #80B173;
}

.fold{
    background-color: rgb(81, 117, 195);
}


.page-title {
    font-size: 25px; font-weight: bold;
}




/*LOADER*/
  /* Fundo do loader */
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141414; /* pode trocar a cor */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.4s ease;
  }

  /* Animação do spinner */
  .spin {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: girar 0.9s linear infinite;
  }

  @keyframes girar {
    to { transform: rotate(360deg); }
  }
