/* Custom overrides – loaded after app.css */

/* Google Sign-In custom button */
.btn-google-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  color: #3c4043;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  max-width: 100%;
}
.btn-google-signin:hover {
  background: #f7f8f8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  color: #3c4043;
  text-decoration: none;
}
.btn-google-signin:active {
  background: #eee;
}
[data-bs-theme="dark"] .btn-google-signin {
  background: #131314;
  border-color: #8e918f;
  color: #e3e3e3;
}
[data-bs-theme="dark"] .btn-google-signin:hover {
  background: #1f1f1f;
  color: #e3e3e3;
}

.btn-green {
  --bs-btn-bg: #51AB24;
  --bs-btn-border-color: #51AB24;
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #469321;
  --bs-btn-hover-border-color: #469321;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #3d821d;
  --bs-btn-active-border-color: #3d821d;
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-bg: #51AB24;
  --bs-btn-disabled-border-color: #51AB24;
  --bs-btn-disabled-color: #fff;
}
