/* 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;
}

/* Hotel card: price badge red (match regular/top cards) */
.hotel-card .price { background-color: #dc3545; }

/* Hotel card: room type thumbnails (from _hotel-card.scss, SCSS not compiled) */
/* Fixed width so single room type doesn't get extra width → consistent box height */
.hotel-card .rooms-available .room {
  min-width: 100px;
  max-width: 100px;
  flex: 0 0 100px;
}
.hotel-card .rooms-available .room img {
  height: 60px;
  width: 100px;
  object-fit: cover;
}

/* Hotel card: Plus savings footer */
.hotel-card .plus-footer {
  background: linear-gradient(135deg, #18AE00 0%, #4CD964 100%);
  padding: 8px 12px;
  border-top: none;
}
.hotel-card .plus-savings-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
}
.hotel-card .plus-tiny-logo {
  height: 16px;
  width: auto;
}
.hotel-card .plus-savings-bar strong {
  font-weight: 700;
}

/* Header z-index: compiled app.css has z-index:10, needs to be above sticky nav (90) but below modals (1050+) */
.app-header {
  z-index: 100;
}

/* Toasts below header dropdown (header is 100, toast default is 1090) */
.toast-container {
  z-index: 99;
}
