.action-geral {
  background: var(--primary-bg-color);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.action-title {
  font-size: 15px;
  font-weight: 700;
  font-family: "Lora", serif;
  margin-bottom: 12px;
}
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-action {
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}

.btn-action:hover {
  opacity: 0.85;
}

.btn-green {
  background-color: #559c60; 
}

.btn-teal {
  background-color: #5c999a; 
}