@charset "UTF-8";
/* Button Component Styles */
/* Targeted button styling using new design system */

/* ==================== TEXT BUTTONS (Primary Style) ==================== */
/* Buttons with text content get the full design system treatment */
.booky-button {
  padding: 0 12px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #ffffff !important;
  background: var(--color-primary) !important;
  opacity: 1;
  border: none !important;
  border-radius: var(--radius-md) !important;
  gap: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.booky-button a {
  color: #ffffff !important;
  text-decoration: none;
}

.booky-button.active {
  background: var(--color-primary-active) !important;
  box-shadow: var(--shadow-sm) !important;
}

.booky-button.orange-button {
  background: var(--color-orange) !important;
}

.booky-button.danger-button {
  background: var(--color-error) !important;
}

.booky-button.danger-button:hover {
  background: #c82333 !important;
}

.booky-button.success-button {
  background: var(--color-success) !important;
}

.booky-button.success-button:hover {
  background: #218838 !important;
}

.booky-button.ghost-button {
  background: none !important;
  border: 1px solid #ccc !important;
  color: #666 !important;
}

.booky-button.ghost-button:hover {
  background: #f5f5f5 !important;
  color: #444 !important;
}

.booky-button.ghost-button:hover:active {
  background: #eee !important;
  color: #333 !important;
}

.transparent-button {
  background: transparent !important;
  border: none;
}

.booky-button.outline-button {
  background: var(--color-gray-50) !important;
  border: 2px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  font-weight: bold;
}

.booky-button.button-xl {
  padding: 0 30px !important;
  min-height: 40px !important;
  font-size: 18px !important;
}

.booky-button.button-xxl {
  padding: 16px 30px !important;
  min-height: 40px !important;
  font-size: 18px !important;
  background-color: unset;
}

/* Text button hover */
.booky-button:hover {
  color: #ffffff !important;
  background: var(--color-primary-hover) !important;
  text-decoration: none;
}

/* Text button pressed */
.booky-button:hover:active {
  color: #ffffff !important;
  background: var(--color-primary-active) !important;
}

/* Text button disabled */
.booky-button:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed;
}

.booky-button.close-button {
  width: 40px;
  height: 16px;
  font-size: 16px;
  background-color: transparent !important;
  color: var(--color-gray-500) !important;
}

/* ==================== ICON BUTTONS (Minimal Style) ==================== */
/* Small buttons with icons only - minimal, compact design */
.booky-button.icon-button {
  min-width: auto !important;
  padding: 6px 8px !important;
  min-height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* background: transparent !important; */
  border: 1px solid var(--color-border-medium) !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-gray-700) !important;
}

.booky-button.icon-button:hover {
  background: var(--color-gray-100) !important;
  border-color: var(--color-border-dark) !important;
}

/* ==================== ICON BUTTON OVERRIDES ==================== */
/* Remove borders for specific icon buttons */
/* button.edit-staff-btn,
button.staff-clock-btn,
button.col-sm-2,
button.col-sm-2.p-0,
#open-log-btn,
#day-view-recordings-bell {
  border: none !important;
  background: transparent !important;
  color: var(--color-gray-700) !important;
}

button.edit-staff-btn:hover,
button.staff-clock-btn:hover,
button.col-sm-2:hover,
button.col-sm-2.p-0:hover,
#open-log-btn:hover,
#day-view-recordings-bell:hover {
  border: none !important;
  background: var(--color-gray-100) !important;
} */

/* ==================== BUTTON VARIANTS ==================== */

/* Primary button - full width */
/* .custom-btn {
  width: 100%;
  text-align: center;
} */

/* Event button - centered, auto width */
/* .event-btn {
  width: auto;
  min-width: 120px;
  margin: 20px auto;
  text-transform: uppercase;
  letter-spacing: 2px;
} */

/* Event detail button - 50% width */
/* .event-btn-detail {
  width: 50%;
  margin: 20px 0;
  text-transform: capitalize;
  letter-spacing: 2px;
  white-space: normal;
  word-wrap: break-word;
} */

/* Event detail red button - warning/delete variant */
/* .event-btn-detail-red {
  width: 50%;
  margin: 20px 0;
  background-color: #dc3545 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: normal;
  word-wrap: break-word;
}

.event-btn-detail-red:hover {
  background: #c82333 !important;
}

.event-btn-detail-red:hover:active {
  background: #bd2130 !important;
} */

/* ==================== BUTTON MODIFIERS ==================== */

/* .dates-grayed-btn {
  background-color: grey !important;
}

.btn-lg {
  width: 300px !important;
} */

/* Full button (calendar) */
/* .full-btn {
  opacity: 0.5;
}

.full-btn:hover {
  opacity: 0.7;
} */

/* ========== PAGINATION BUTTON =========== */
.pagination-button {
  min-width: 60px;
  display: inline-block;
  padding: 6px;
  font-size: 16px;
  background-color: var(--color-faded-purple-dark);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.pagination-button:hover {
  background-color: var(--color-primary-hover);
}

.pagination-button:disabled {
  background-color: #bdc3c7;
  color: #7f8c8d;
  cursor: not-allowed;
}
.pagination-button:disabled:hover {
  transform: unset;
}

/* Icon inside button
button .icon,
.button .icon,
.custom-btn .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
} */

/* Search button icon - smaller size */
.search-button img {
  width: 24px !important;
  height: 24px !important;
}

/* Make images inside text buttons black */
.booky-button img {
  filter: brightness(0) invert(1);
}
.booky-button.search-button:hover img {
  filter: brightness(0) invert(0);
}

.booky-phone-input-container {
  position: relative;
}

.booky-phone-input-container::before {
  content: "+1";
  position: absolute;
  left: 0px;
  top: 49%;
  transform: translateY(-50%);
  padding: 6px 4px;
  border-radius: 3px 0 0 3px;
  border-right: none;
}
.booky-phone-input-container input {
  padding-left: 2.2rem !important;
}

.split-button {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  font-family: sans-serif;
  width: 100%;
  height: 100%;
  font-size: 1rem;
}

.split-button button {
  flex: 1;
  padding: 0;
  border: none;
  border-radius: unset !important;
  cursor: pointer;
  transition: background 0.2s;
}

.split-button .btn-left {
  border-right: 1px solid white !important;
}

.book-next-btn {
  width: 100%;
  font-size: 1.1rem;
  height: 50px;
}
