
html,body {
  font-size: 1rem;
  padding-bottom: 20px;
}

label, input[type='checkbox'] {
	cursor: pointer;
}

input[type='checkbox']:checked + .form-check-label {
    font-weight: bold;
}

.hidden-override {
display: none !important;
}
  
.input-group .btn {
	white-space: nowrap;
}
.location-search-results {
	position:absolute;
	display:block;
	left:0;
	top: 40px;
	margin-top:10px;
	display:none;
	border: 1px solid #212529;
	background:#fff;
	padding:10px;
	z-index:99;
}
.location-search-results a {
	display:block;
	text-decoration:none;
}
.location-search-results a span {
	color:#666;
	font-size:0.8rem;
}
.location-search-results a:hover {
	background-color: #f8f9fa; /* Bootstrap's light gray */
}

.draggable {
  cursor: grab;
}

.draggable:active {
  cursor: grabbing;
}

/* Override the active (selected) date in the jQuery UI calendar */
.ui-datepicker td.ui-state-highlight {
	background: #0d6efd !important;  /* Bootstrap primary blue */
	border-color: #0a58ca !important; /* A slightly darker blue */
	color: #fff !important;
}
 #datesContainer {
    max-height: 300px; /* Set this to your calendar's height */
    overflow-y: auto;
}

#repeats-week-options {
	display:flex;	
}

.postal-code {
	width: 6ch !important;
}

/* Base pop-up style */
.popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -20px);
  z-index: 1050;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slideIn 0.5s forwards;
  cursor: pointer;
}

.popup-success {
  background-color: #28a745; /* Bootstrap success green */
}

.popup-error {
  background-color: #dc3545; /* Bootstrap error red */
}

/* Slide in animation: slide vertically into view */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Fade out animation */
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* When hiding, add this class to trigger fade-out */
.popup.hide {
  animation: fadeOut 0.5s forwards;
}

#filePreview textarea {
	font-size:smaller;
	color: #666;
}

#confirmationMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #d4edda; /* Light green background */
  border: 1px solid #c3e6cb; /* Green border */
  padding: 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  text-align: center;
}

#confirmationMessage h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#confirmationMessage p {
  font-size: 1.25rem;
}

#logo {
	width:300px;
}
#header-img {
	max-width:550px;
}
/* Style the TinyMCE AI button since it's always last */
.tox-tinymce .tox-toolbar__group:last-of-type button {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  cursor:pointer;
}
.tox-tinymce .tox-toolbar__group:last-of-type svg {
  fill: #fff;
}

#date-picker-options .col {
	min-width:400px;
	
}

