.btn-flutuante {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  cursor: pointer;
  width: auto;
  max-width: 90%;
  white-space: nowrap;
}

.btn-flutuante:hover {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #45a049;
}

.btn-delete {
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1.2rem;
  box-shadow: 0 2px 8px rgba(229,57,53,0.13);
  transition: background 0.18s, box-shadow 0.18s;
}


.btn-delete:hover, .btn-delete:focus {
  background: #b71c1c;
  box-shadow: 0 4px 16px rgba(229,57,53,0.22);
}

@media (max-width: 600px) {
  .btn-flutuante {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    bottom: 14px;
  }
}

.badge-status {
  display: inline-block;
  margin-top: 5px;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 8px;
  font-weight: bold;
}
.badge-verificado {
  background-color: #d4edda;
  color: #155724;
}
.badge-nao-verificado {
  background-color: #f8d7da;
  color: #721c24;
}
