#needle1,
#needle2,
#needle3 {
    position: absolute;
    width: 2px;
    height: 155px;
    /* Altura da agulha */
    background: black;
    bottom: 20px;
    /* Posiciona a agulha na base */
    left: 50%;
    /* Centraliza horizontalmente */
    transform-origin: 50% 100%;
    /* Gira a agulha a partir da base */
    transform: rotate(-90deg);
    /* Inicia na posição -90 graus (esquerda) */
    transition: transform 0.5s ease;
    /* Animação suave */
}

#gauge {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

body {
    background-color: rgb(254, 240, 217);
}

canvas {
    font-family: 'Meta Pro', sans-serif;
}


/* Animação para fazer o texto piscar */
@keyframes piscar {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.btn-piscar {
    animation: piscar 1s infinite;
    /* Aplica a animação */
}

mark {
    background-color: #ffff00 !important
      /*Add your desired color*/
  }





  /* 
   */




   /* Melhorias gerais */
body {
    font-family: 'Meta Pro', sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Meta Pro', sans-serif;
    font-weight: 700;
    color: #2c3e50;
  }
  
  /* Cartões modernos */
  .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Formulário de login */
  .login-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Tabelas responsivas */
  .table-responsive {
    overflow-x: auto;
  }
  
  .table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
  }
  
  /* Botões */
  .btn {
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary {
    background-color: #3498db;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #2980b9;
  }
  
  .btn-danger {
    background-color: #e74c3c;
    border: none;
  }
  
  .btn-danger:hover {
    background-color: #c0392b;
  }
  
