/* Floating Action Button styling */

.floating-email-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #2e7d32;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

.floating-email-btn:hover {
  background-color: #1b5e20;
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
}

/* Modal UI Styling */

.custom-modal-bg {
  background-color: #1e1e1e;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
}

.custom-input:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #4cd137;
  box-shadow: 0 0 0 0.25rem rgba(76, 209, 55, 0.25);
}

.custom-submit-btn:hover {
  background-color: #1b5e20;
  color: white;
}

