body {
    font-family: 'Source Sans Pro', sans-serif;
}


.orbitron {
    font-family: 'Orbitron', sans-serif;
}


.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    /*font-size: 1.5rem;*/
    color: inherit;
    background: linear-gradient(90deg, #00c6ff, #0088ff, #00ffcc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animação suave de pulsação */
@keyframes pulse-logo {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.loading-logo {
  width: 80px;
  animation: pulse-logo 1.8s infinite ease-in-out;
}

#loadingModal .modal-dialog {
  max-width: none;
  width: 100vw;
  height: 100vh;
  margin: 0;
}

#loadingModal .modal-content {
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animation__shake {
  animation: shake-logo 1.3s infinite ease-in-out;
}

@keyframes shake-logo {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

.loading-logo {
  max-width: 100px;
}

table .handle i {
    color: #888;
    transition: color 0.2s;
}

table .handle:hover i {
    color: #007bff;
}


