<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.btn-success {
  border: none;
  background-color: #4CAF50;
}
.btn-success:hover {
  background-color: #00C853;
}

img {
  max-width: 100%;
}

#staticBackdrop form {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
#staticBackdrop form label {
  font-size: 0.9rem;
  color: #6e6e73;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}
#staticBackdrop form input[type=text],
#staticBackdrop form input[type=email],
#staticBackdrop form input[type=tel],
#staticBackdrop form input[type=password],
#staticBackdrop form select,
#staticBackdrop form textarea {
  display: block;
  width: 100%;
  padding: 0.25rem;
  font-size: 12px;
  background-color: #f2f2f7;
  border: 1px solid #d1d1d6;
  border-radius: 4px;
  color: #1c1c1e;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 0.75rem;
}
#staticBackdrop form input[type=text]:focus,
#staticBackdrop form input[type=email]:focus,
#staticBackdrop form input[type=tel]:focus,
#staticBackdrop form input[type=password]:focus,
#staticBackdrop form select:focus,
#staticBackdrop form textarea:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.5);
  outline: none;
}
#staticBackdrop form button {
  font-size: 12px;
  padding: 0.5em 1em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}
#staticBackdrop form button.btn-primary {
  background-color: #007aff;
  color: #fff;
}
#staticBackdrop form button.btn-primary:hover {
  background-color: #0062cc;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
#staticBackdrop form button.btn-secondary {
  background-color: #e9e9ea;
  color: #1c1c1e;
}
#staticBackdrop form button.btn-secondary:hover {
  background-color: #818187;
}
#staticBackdrop form .modal-body {
  padding: 1.5em;
}
#staticBackdrop form .modal-body .form-group {
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  #staticBackdrop form .modal-header,
  #staticBackdrop form .modal-footer {
    text-align: left;
  }
  #staticBackdrop form .modal-footer .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.thumbnail-container {
  width: 100%; /* Take full width of the col-2 */
  padding-top: 100%; /* Maintain square aspect ratio */
  position: relative; /* Needed for absolute positioning of img */
  overflow: hidden; /* Hide any overflow */
  display: flex;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
  border: 1px solid #fff; /* Optional: Add border to the container */
  background-color: #f5f5f5; /* Optional: Add background color */
}
.thumbnail-container .delete-image-btn {
  position: absolute; /* Absolute positioning to fill the container */
  top: 0;
  right: 0;
  font-size: 1em;
}

.thumbnail-container img {
  position: absolute; /* Absolute positioning to fill the container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image covers the container while maintaining its aspect ratio */
}

.warning {
  position: absolute; /* Absolute positioning to fill the container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 193, 7, 0.9);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.warning span {
  font-weight: 700;
  width: 90%;
  height: auto;
}

#calendar-desc {
  float: left;
  width: 100%;
  height: 48px;
  line-height: 48px;
  position: relative;
}
#calendar-desc label, #calendar-desc input, #calendar-desc button {
  float: left;
  border: none;
}
#calendar-desc label {
  display: none;
}
#calendar-desc input {
  float: left;
  width: 100%;
  padding: 0 0.5em;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 18px;
  border-radius: 0.25em;
}
#calendar-desc input:focus {
  background-color: rgba(0, 0, 0, 0.05);
}
#calendar-desc button {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0%, -50%);
  font-size: 12px;
  line-height: 28px;
}

#cookiePopup {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  font-size: 14px;
  z-index: 999999;
}
#cookiePopup button {
  border: none;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  cursor: pointer;
}/*# sourceMappingURL=media.css.map */</pre></body></html>