/* Estilos globais para a Decoral Stones */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* Estilos para os menus dropdown */
select option {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

/* Estilos para os botões com efeito de reflexo */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.btn:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.2);
  transform: rotate(45deg);
  z-index: 1;
  transition: all 0.6s ease;
  opacity: 0;
}

.btn:hover:before {
  opacity: 1;
  left: -100%;
}

.action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-size: 0.9rem;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.action-btn.edit:hover {
  background: #3498db;
}

.action-btn.delete:hover {
  background: #e74c3c;
}

.action-btn.baixa:hover {
  background: #f39c12;
}

.action-btn.repor:hover {
  background: #2ecc71;
}