/* styles.css */
.grey-text-container {
  color: #2e3b31; /* Bootstrap's text-muted grey */
}

/* Optional: ensure labels and buttons don't override it */
.grey-text-container label,
.grey-text-container .form-label,
.grey-text-container .card-header,
.grey-text-container strong,
.grey-text-container p,
.grey-text-container li,
.grey-text-container button {
  color: #7e085c !important;
}

/* grey-text.css or form-styles.css */

.custom-submit-btn {
  background-color: #7e085c;  /* Bootstrap blue */
  color: rgb(43, 97, 73);
  border: none;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.custom-submit-btn:hover {
  background-color: #7e085c; /* Darker blue on hover */
  cursor: pointer;
}

/* Optional: make sure grey-text doesn't override it */
.grey-text-container .custom-submit-btn {
  color: rgb(6, 7, 6) !important;
}
