/* Buttons */
.primary-button {
  background-color: #D3FC01;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
  text-transform: none; /* Changed from uppercase */
  font-size: 14px;
  transition: all 0.3s ease;
}

.primary-button:hover {
  background-color: #b8e600;
  transform: translateY(-2px);
}

.action-button {
  display: inline-block;
  background-color: #D3FC01;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
  text-transform: none; /* Changed from uppercase */
  font-size: 14px;
  transition: all 0.3s ease;
}

.action-button:hover {
  background-color: #b8e600;
  transform: translateY(-2px);
}

.secondary-button {
  background-color: transparent;
  border: 2px solid #D3FC01;
  color: #D3FC01;
  padding: 10px 22px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
  text-transform: none; /* Changed from uppercase */
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: rgba(211, 252, 1, 0.1);
}

.black-action {
  display: inline-block;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
  text-transform: none; /* Changed from uppercase */
  font-size: 14px;
  transition: all 0.3s ease;
}

.black-action:hover {
  background-color: #333;
  transform: translateY(-2px);
}
