@charset "UTF-8";
@import url("https://unpkg.com/leaflet@1.9.3/dist/leaflet.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap");
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.container-fluid {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.row.g-2 {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

.row.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.row.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
}

.table thead th {
  border-bottom: 2px solid #dee2e6;
  text-align: left;
}

.table-info > * {
  background-color: #cff4fc;
}

.table-success > * {
  background-color: #d1e7dd;
}

.table-danger > * {
  background-color: #f8d7da;
}

.list-group {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.list-group-item {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:last-child {
  border-bottom: 0;
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border-spin 0.75s linear infinite;
}

@keyframes spinner-border-spin {
  to {
    transform: rotate(360deg);
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.simple-calendar {
  table {
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(221, 221, 221);
    border-collapse: collapse;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }
  tr {
    border-collapse: collapse;
  }
  th {
    padding: 6px;
    border-bottom: 2px solid rgb(221, 221, 221);
    border-collapse: collapse;
    border-left: 1px solid rgb(221, 221, 221);
    border-right: 1px solid rgb(221, 221, 221);
    border-top: 0px none rgb(51, 51, 51);
    box-sizing: border-box;
    text-align: left;
  }
  td {
    padding: 6px;
    vertical-align: top;
    width: 14%;
    border: 1px solid #ddd;
    border-top-color: rgb(221, 221, 221);
    border-top-style: solid;
    border-top-width: 1px;
    border-right-color: rgb(221, 221, 221);
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: rgb(221, 221, 221);
    border-left-style: solid;
    border-left-width: 1px;
  }
  .calendar-heading nav {
    display: inline-block;
  }
  .day {
    height: 80px;
  }
  .today {
    background: #FFFFC0;
  }
  .prev-month {
    background: #DDD;
  }
  .next-month {
    background: #DDD;
  }
}

.avatar {
  width: 40px;
  border-radius: 50%;
}

.avatar-large {
  width: 56px;
  border-radius: 50%;
}

.avatar-bordered {
  width: 40px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: white 1px solid;
}

.avatar-square {
  width: 40px;
  border-radius: 0px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: white 1px solid;
}

.table-full-width {
  width: 100%;
  table-layout: fixed;
}

.table-full-width th,
.table-full-width td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.col-status {
  width: 15%;
}

.col-client {
  width: 15%;
}

.col-date {
  width: 15%;
}

.col-guests {
  width: 10%;
}

.col-city {
  width: 15%;
}

.col-event {
  width: 15%;
}

.col-partners {
  width: 15%;
}

.booking-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 200px);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.booking-header .title-edit {
  display: flex;
  align-items: center;
}
.booking-header .title-edit h1 {
  font-size: 24px;
  margin: 0;
  margin-right: 10px;
}
.booking-header .title-edit .edit-icon {
  color: #333;
  text-decoration: none;
}
.booking-header .title-edit .edit-icon:hover {
  color: #666;
}
.booking-header .title-edit .edit-icon .material-icons {
  font-size: 20px;
}

.booking-status {
  display: flex;
  align-items: center;
}
.booking-status .status-label {
  margin-right: 10px;
}
.booking-status .status-select {
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.booking-content {
  display: flex;
  gap: 20px;
  flex: 1;
}

.booking-info {
  flex: 2;
}

.info-section {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.info-section h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.info-item label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.booking-map {
  height: 200px;
  margin-bottom: 15px;
  background-color: #e0e0e0;
  z-index: 1;
}

.address-link {
  color: #0066cc;
  text-decoration: none;
}
.address-link:hover {
  text-decoration: underline;
}

.booking-partners {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}
.booking-partners h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.partners-list {
  margin-bottom: 15px;
}

.partner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.partner-item:last-child {
  border-bottom: none;
}

.partner-info {
  display: flex;
  flex-direction: column;
}

.partner-name {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.partner-name:hover {
  text-decoration: underline;
}

.partner-distance {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}
.partner-distance .material-icons {
  font-size: 1em;
  margin-right: 5px;
}

.add-partner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.add-partner-btn:hover {
  background-color: #45a049;
}
.add-partner-btn .material-icons {
  margin-right: 5px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#partner-name {
  margin-bottom: 20px;
}

#partner-details {
  margin-bottom: 20px;
}

.btn-group {
  margin-top: 20px;
}

.comment-content {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px;
  min-height: 100px;
}

.status-badge {
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn-outline-primary, .btn-outline-success, .btn-outline-danger {
  border-width: 2px;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.card_title a {
  color: #000000;
  text-decoration: none;
  font-size: x-large;
}

.custom-marker {
  background: transparent;
  border: none;
}
.custom-marker div {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.leaflet-popup-content-wrapper {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.leaflet-popup-content {
  margin: 0;
  min-width: 200px;
}

.leaflet-popup-tip {
  border-radius: 0.25rem;
}

.leaflet-marker-icon {
  transition: all 0.2s ease;
}
.leaflet-marker-icon:hover {
  transform: scale(1.1);
  z-index: 1000 !important;
}

.pagination a, .pagination span.current, .pagination span.gap {
  float: left;
  padding: 0 14px;
  line-height: 38px;
  text-decoration: none;
  background-color: white;
  border: 1px solid #DDD;
  border-left-width: 0;
}

.pagination {
  border-left: 1px solid #ddd;
}
.pagination .first {
  padding: 0;
  float: none;
  border: none;
}
.pagination .prev {
  padding: 0;
  float: none;
  border: none;
}
.pagination .page {
  padding: 0;
  float: none;
  border: none;
}
.pagination .next {
  padding: 0;
  float: none;
  border: none;
}
.pagination .last {
  padding: 0;
  float: none;
  border: none;
}

.prestation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 15px;
}

.prestation-item {
  margin: 0 !important;
}

.prestation-item label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 6px 10px;
  border: 1px solid #007bff;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.85em;
  background-color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prestation-item label:hover {
  background-color: #e7f1ff;
  color: #007bff;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.1);
}

.prestation-item input[type=checkbox]:checked + label {
  background-color: #007bff;
  color: white;
  border-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.2);
}

.form-control-file {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
}

.bi-chevron-left {
  font-size: 2rem !important;
}

.profile-header {
  background-color: #e9ecef;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-gallery img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.list-group-item {
  border: none;
  padding: 0.5rem 0;
}

.badge {
  font-weight: 500;
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

.mf-search-page {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.mf-search-page .mf-search-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
}
.mf-search-page .mf-search-title {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.mf-search-page .mf-search-form {
  display: flex;
  flex-direction: column;
}
.mf-search-page .mf-search-input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.mf-search-page .mf-search-input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  outline: none;
}
.mf-search-page .mf-search-button {
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #6e8efb, #4a90e2);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.mf-search-page .mf-search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #5a7ff0, #3980d8);
}
.mf-search-page .mf-search-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.mf-search-page .mf-search-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

@media (max-width: 576px) {
  .mf-search-page .mf-search-container {
    width: 95%;
    padding: 2rem;
  }
}
.search_field {
  background-color: white;
  border-radius: 5px;
  height: 4em;
  width: 25em;
  padding-left: 12px;
}

.search_button {
  background: transparent;
  color: white;
  font-size: 30px;
  border: 0;
}

.card-body-calendar {
  border: 3px solid #969696;
  border-radius: 0.25rem;
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
}

#daily-bookings-card {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
#daily-bookings-card .card-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}

#calendar-filter-form {
  padding: 5px;
  margin: 5px;
}
#calendar-filter-form .form-select,
#calendar-filter-form .form-control {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px 12px;
}
#calendar-filter-form .form-select:focus,
#calendar-filter-form .form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#calendar-filter-form .btn {
  padding: 8px 16px;
  font-weight: 500;
}
#calendar-filter-form .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}
#calendar-filter-form .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}
#calendar-filter-form .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}
#calendar-filter-form .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.tooltip .tooltip-inner {
  border: 2px solid #fff;
}

@media (max-width: 768px) {
  #calendar-filter-form .col-md-3,
  #calendar-filter-form .col-auto {
    margin-bottom: 10px;
  }
}
.mf_button {
  border-radius: 18px;
  padding: 5px;
  padding-left: 9px;
  padding-right: 9px;
  margin: 5px;
  text-decoration: none;
  color: black;
  text-align: center;
  text-transform: uppercase;
  background: #FBB040;
}

.mf_button a:hover,
.mf_button a:visited,
.mf_button a:link,
.mf_button a:active {
  text-decoration: none;
}

.mf_button:hover {
  background: #FFDE17;
}

.mf_button_back {
  border-radius: 18px;
  padding: 5px;
  margin: 5px;
  text-decoration: none;
  color: black;
  text-align: center;
  text-transform: uppercase;
  background: #F5F5F5;
}

.delete-icon {
  color: black;
  transition: color 0.3s ease;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.delete-icon:hover {
  color: red;
}

.main-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  border: 5px solid #000;
  border-radius: 12px;
  background-color: #fff;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: #f1f3f5;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem;
  font-weight: 600;
}

.card-body {
  padding: 1.5rem;
}

.card-month {
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1.25rem;
  background-color: #f4f4f4;
  border: 2px solid #e0e0e0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.card-month .card-body {
  width: 100%;
  padding: 0;
}
.card-month h6.text-muted {
  font-size: 0.875rem;
  margin-bottom: 0.5rem !important;
}
.card-month h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-month .d-flex.justify-content-between.align-items-center {
  height: auto;
  width: 100%;
}
.card-month .d-flex.align-items-center {
  gap: 4px;
}
.card-month .d-flex.align-items-center svg {
  width: 20px;
  height: 20px;
}
.card-month .text-success,
.card-month .text-danger {
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.card-month .text-success {
  color: #28a745 !important;
}
.card-month .text-danger {
  color: #dc3545 !important;
}
.card-month .text-muted {
  color: #6c757d !important;
}
.card-month .text-muted.small {
  font-size: 0.75rem;
  margin-top: 4px;
}

.col-md-3:nth-child(1) .card-month:hover {
  border: 2px solid #007bff;
  background: linear-gradient(to right bottom, white, rgba(0, 123, 255, 0.15));
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}
.col-md-3:nth-child(2) .card-month:hover {
  border: 2px solid #28a745;
  background: linear-gradient(to right bottom, white, rgba(40, 167, 69, 0.15));
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}
.col-md-3:nth-child(3) .card-month:hover {
  border: 2px solid #ffc107;
  background: linear-gradient(to right bottom, white, rgba(255, 193, 7, 0.15));
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}
.col-md-3:nth-child(4) .card-month:hover {
  border: 2px solid #6f42c1;
  background: linear-gradient(to right bottom, white, rgba(111, 66, 193, 0.15));
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.2);
}

@media (max-width: 768px) {
  .col-md-3 {
    margin-bottom: 1rem;
  }
  .card-month {
    height: auto;
    min-height: 120px;
  }
}
.messages-container {
  height: 400px;
  overflow-y: auto;
  padding: 1rem;
}

.message {
  margin-bottom: 1rem;
}
.message.inbound .message-bubble {
  background-color: #f1f0f0;
  border-radius: 15px 15px 15px 0;
}
.message.outbound .message-bubble {
  background-color: #dcf8c6;
  border-radius: 15px 15px 0 15px;
}
.message.outbound .message-content {
  text-align: right;
}

.message-bubble {
  display: inline-block;
  max-width: 75%;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}

.message-meta {
  font-size: 0.75rem;
  color: #666;
}

.status-icon {
  color: #34b7f1;
}

.demand-chart {
  padding: 2rem;
  background-color: #f9f9f9;
  margin: 2rem auto;
  max-width: 800px;
}
.demand-chart h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 300px;
  width: 90%;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  margin: 20px auto;
  padding: 20px;
  gap: 5px;
}

.bar {
  width: 35px;
  margin: 0 2px;
  text-align: center;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.3s ease;
}
.bar span {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-size: 0.9rem;
}

.requirements {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
}
.requirements h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.requirement-item:hover {
  transform: translateY(-5px);
}
.requirement-item .material-icons {
  font-size: 2rem;
  color: #e67e22;
}
.requirement-item .content h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.requirement-item .content p {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.cuisine-card {
  perspective: 1000px;
  height: 300px;
}
.cuisine-card:hover .cuisine-card-inner {
  transform: rotateY(180deg);
}

.cuisine-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.cuisine-card-front,
.cuisine-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cuisine-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
}

.cuisine-icon {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 1rem;
}

.cuisine-content h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}
.cuisine-content .options {
  color: #7f8c8d;
  font-style: italic;
}
.cuisine-content .price {
  color: #27ae60;
  font-weight: bold;
  margin-top: 1rem;
}

.cuisine-image {
  background: white;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.cuisine-image .material-icons {
  font-size: 64px;
  color: #e67e22;
}

.alert {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
}

.carousel-item img {
  height: 380px;
  object-fit: cover;
  width: 100%;
}

html, body {
  height: 100%;
  margin: 0;
  background-color: #dddddd;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.flex-grow-1 {
  flex-grow: 1;
}

footer {
  background-color: #f8f9fa;
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.modal {
  z-index: 1060;
}

.modal-backdrop {
  z-index: 1050;
}

.messages-container {
  background-color: #e5ddd5;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAWdEVYdENyZWF0aW9uIFRpbWUAMTAvMTUvMjB+UjWwAAACpElEQVRoge2ZP2gTYRjAf+/lL01tq7ZqFarVIggOUhcV0UEE0UHs4uAiFlwUFAQXwVkHEVx0EMHBUURwEQoOgqAUB/+BWq1YW6xIqW0TYy55z+G+mBbjXXKX3OUSzm9Kct/3Pb/vfXfv3nsPLBaLxWKxWCyW/wphtFjr0fk01kf0TgI7gG1ACOwBikCP3l8BloEQ+AV8BD4A74B3wW1xJ/WkUmE0Ij0H5oCjQC1h/ghwCDgGRAjxFHgKvM0ycaoRrUfnLwOXgPVZJm6RJeAG8DC4Le6nTZLKSK1H54eBp8DedLrWxBxwIrgt3jRr2NRI69H5YeA5sLnTylbhB3AouC2+1WvQkpFaj84PAq+ATd1RVpcFYCy4Lb7GNUhsRBsYw4wJgDzwrNaj8/Ua1DWiTVwHBruva1UGgRv1dq5qRF+dznVf0yTn9N2tQlIjF4EDGQhqhwPApbiNsUb0vH8lGz1tcyVuMq5npkhmPZEGCRwEtsdt/CeNAL1xi2sZyQH92SvpiP64xXUZyQFxd/mNRn/c4lpGVjKW0ilh3OJaRpaAP9lq6YifcYtrGQmBz9lq6YhPcYtJjLzPUEin1E2eZPR6k52MTukDJuI2ruqR4I74DhzOQFQ7vAnuiIW4jak6dtV7JQsGgNN1d6b4xr8LTKXVswamgrtisl6DREZ0EE8AU51qWiNTwMmkd8+WBuPgjngDnAEqbStbmwpwthUTkMII/M2bAE4Ab1qNTcBb4HhwR7xPkyT1M35wR8wCI8DZJK/GNagAl4ARbSI1bT3XBHfEYnBHXMM8D9wEfrUTq/kNXAVG9bFbHXu6RsE9MQEcAa4Bi0nixMoi5hoX3BMTnR67Kx17Zb4npoBJ4AewHdiuv28FNuqmK+j/EZ8B88Bn4APwMbgnZrqhzWKxWCwWi8VisWTDX3qTt+1qWF7XAAAAAElFTkSuQmCC");
  height: 500px;
  overflow-y: auto;
  padding: 16px;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message {
  max-width: 65%;
  padding: 8px 12px;
  border-radius: 7.5px;
  position: relative;
  width: fit-content;
  word-wrap: break-word;
}
.message .message-content {
  font-size: 14px;
  line-height: 19px;
}
.message .message-metadata {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  max-height: 70vh;
  overflow-y: auto;
  background-color: #e5ddd5;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAMdEVYdFRpdGxlAFdoYXRzQXBw9aYHyQAAACF0RVh0QXV0aG9yAFJvYmVydCBTenVjcyAocm9iZXJ0c3p1Y3MpW5+pDQAAAFh0RVh0Q29weXJpZ2h0AENDMCBQdWJsaWMgRG9tYWluIERlZGljYXRpb24gaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvcHVibGljZG9tYWluL3plcm8vMS4wL8bjvfkAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMDktMjFUMTc6NTE6MzYrMDI6MDBbR2jgAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTA5LTIxVDE3OjUxOjM2KzAyOjAwKhLQXAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABbSURBVGiB7dexDQAgCERR7D+C/cfwV4zGQqOF3p8EeHkBxB2PMefcY8/MXB5zVfV3RKr7zcyKiNxRWWbWiYjzyDgRcZ6IOI+M8+8+Mo6IOI+M8+8+Mo6IOM+DB/weCu6/lHYAAAAASUVORK5CYII=");
}
.message .message {
  max-width: 75%;
  margin: 0.2rem 0;
}
.message .message.inbound {
  align-self: flex-start;
}
.message .message.inbound .message-bubble {
  background-color: #ffffff;
  border-radius: 0.8rem 0.8rem 0.8rem 0;
}
.message textarea {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  resize: none;
}
.message textarea.outbound {
  align-self: flex-end;
}
.message textarea.outbound .message-bubble {
  background-color: #d9fdd3;
  border-radius: 0.8rem 0.8rem 0 0.8rem;
}
.message textarea .message-bubble {
  padding: 0.5rem 0.7rem;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}
.message textarea .message-content {
  word-break: break-word;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #111b21;
}
.message textarea .message-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-top: 0.2rem;
  min-height: 15px;
}
.message textarea .message-time {
  font-size: 0.7rem;
  color: #667781;
}
.message textarea .message-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  color: #667781;
}
.message .messages::-webkit-scrollbar {
  width: 6px;
}
.message .messages::-webkit-scrollbar-track {
  background: transparent;
}
.message .messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.message .messages::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.avatar {
  width: 40px;
  border-radius: 50%;
}

.avatar-large {
  width: 56px;
  border-radius: 50%;
}

.avatar-bordered {
  width: 40px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: white 1px solid;
}

.avatar-square {
  width: 40px;
  border-radius: 0px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: white 1px solid;
}

.table-full-width {
  width: 100%;
  table-layout: fixed;
}

.table-full-width th,
.table-full-width td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.col-status {
  width: 15%;
}

.col-client {
  width: 15%;
}

.col-date {
  width: 15%;
}

.col-guests {
  width: 10%;
}

.col-city {
  width: 15%;
}

.col-event {
  width: 15%;
}

.col-partners {
  width: 15%;
}

.booking-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 200px);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.booking-header .title-edit {
  display: flex;
  align-items: center;
}
.booking-header .title-edit h1 {
  font-size: 24px;
  margin: 0;
  margin-right: 10px;
}
.booking-header .title-edit .edit-icon {
  color: #333;
  text-decoration: none;
}
.booking-header .title-edit .edit-icon:hover {
  color: #666;
}
.booking-header .title-edit .edit-icon .material-icons {
  font-size: 20px;
}

.booking-status {
  display: flex;
  align-items: center;
}
.booking-status .status-label {
  margin-right: 10px;
}
.booking-status .status-select {
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.booking-content {
  display: flex;
  gap: 20px;
  flex: 1;
}

.booking-info {
  flex: 2;
}

.info-section {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.info-section h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.info-item label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.booking-map {
  height: 200px;
  margin-bottom: 15px;
  background-color: #e0e0e0;
  z-index: 1;
}

.address-link {
  color: #0066cc;
  text-decoration: none;
}
.address-link:hover {
  text-decoration: underline;
}

.booking-partners {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}
.booking-partners h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.partners-list {
  margin-bottom: 15px;
}

.partner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.partner-item:last-child {
  border-bottom: none;
}

.partner-info {
  display: flex;
  flex-direction: column;
}

.partner-name {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.partner-name:hover {
  text-decoration: underline;
}

.partner-distance {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}
.partner-distance .material-icons {
  font-size: 1em;
  margin-right: 5px;
}

.add-partner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.add-partner-btn:hover {
  background-color: #45a049;
}
.add-partner-btn .material-icons {
  margin-right: 5px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#partner-name {
  margin-bottom: 20px;
}

#partner-details {
  margin-bottom: 20px;
}

.btn-group {
  margin-top: 20px;
}

.comment-content {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px;
  min-height: 100px;
}

.status-badge {
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.card-body-calendar {
  border: 3px solid #969696;
  border-radius: 0.25rem;
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
}

#daily-bookings-card {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
#daily-bookings-card .card-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}

#calendar-filter-form {
  padding: 5px;
  margin: 5px;
}
#calendar-filter-form .form-select,
#calendar-filter-form .form-control {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px 12px;
}
#calendar-filter-form .form-select:focus,
#calendar-filter-form .form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#calendar-filter-form .btn {
  padding: 8px 16px;
  font-weight: 500;
}
#calendar-filter-form .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}
#calendar-filter-form .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}
#calendar-filter-form .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}
#calendar-filter-form .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.tooltip .tooltip-inner {
  border: 2px solid #fff;
}

@media (max-width: 768px) {
  #calendar-filter-form .col-md-3,
  #calendar-filter-form .col-auto {
    margin-bottom: 10px;
  }
}
/* Premium Calendar Styles — Booking Calendar */
/* ─── Calendar shell ─────────────────────────────────────────── */
.simple-calendar {
  margin: 0;
  /* ── Month navigation heading ── */
  .calendar-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem 0.875rem;
    border-bottom: 1px solid #f1f5f9;
    .calendar-title {
      font-size: 1rem;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.015em;
    }
    /* simple_calendar renders text links (Previous / Today / Next) inside a <nav> */
    nav {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }
    a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.375rem 0.75rem;
      border-radius: 0.5rem;
      color: #475569;
      font-size: 0.8125rem;
      font-weight: 500;
      white-space: nowrap;
      text-decoration: none;
      transition: background-color 0.15s ease, color 0.15s ease;
      position: static;
      transform: none;
      &:hover {
        background-color: #f1f5f9;
        color: #0f172a;
      }
    }
  }
  /* ── Day-of-week header row ── */
  .table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    thead th {
      padding: 0.5rem 0.25rem;
      text-align: center;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #94a3b8;
      border-bottom: 1px solid #f1f5f9;
    }
  }
  /* ── Day cells ── */
  .day {
    height: 7.5rem;
    padding: 0;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background-color 0.12s ease;
    vertical-align: top;
    &:hover {
      background-color: #f8faff;
      z-index: 5;
    }
    /* Weekends — very subtle tint */
    &.wday-6,
    &.wday-0 {
      background-color: #fafbfc;
    }
    /* Today */
    &.today .bookings-calendar-date {
      background-color: #4f46e5;
      color: #ffffff !important;
      border-radius: 9999px;
      width: 1.5rem;
      height: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Past days */
    &.past {
      background-color: #fafafa;
      .bookings-calendar-date {
        color: #c0c8d4;
      }
    }
    /* Other month days */
    &.prev-month,
    &.next-month {
      background-color: #f9fafb;
      .bookings-calendar-date {
        color: #d1d5db;
      }
      .bookings-calendar-event {
        opacity: 0.5;
      }
    }
    /* Selected date highlight */
    &.selected-date {
      background-color: #eff6ff;
      border-color: #bfdbfe;
      z-index: 5;
      &:hover {
        background-color: #dbeafe;
      }
      .bookings-calendar-date:not(.today .bookings-calendar-date) {
        color: #1d4ed8;
        font-weight: 700;
      }
    }
    /* Today + selected */
    &.today.selected-date .bookings-calendar-date {
      background-color: #1d4ed8;
      box-shadow: 0 0 0 3px #bfdbfe;
    }
  }
}

/* ── Date number ── */
.bookings-calendar-date {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  /* Size set inline for today circle via JS or the .today selector above */
}

/* ── Event pill ── */
.bookings-calendar-event {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.2rem 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  border-radius: 0.3rem;
  color: #fff;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.4;
  opacity: 0.93;
  &:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    opacity: 1;
    z-index: 20;
    position: relative;
  }
  /* Dot indicator before text */
  &::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
  }
}

/* ── "+N more" overflow pill ── */
.bookings-more-bookings {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.4rem;
  width: 100%;
  border-radius: 0.3rem;
  color: #64748b;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: background-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  &:hover {
    background-color: #e2e8f0;
    color: #334155;
  }
}

/* ── Daily bookings side panel ── */
.booking-item {
  display: block;
  text-decoration: none;
  color: currentColor;
  transition: background-color 0.12s ease;
  &:hover {
    background-color: #f8faff;
  }
  &:last-child .booking-item-inner {
    border-bottom: none;
  }
}

/* ── Status avatar circle ── */
.status-circle {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ── Calendar loader overlay ── */
#calendar-loader {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
}

.mf_button {
  border-radius: 18px;
  padding: 5px;
  padding-left: 9px;
  padding-right: 9px;
  margin: 5px;
  text-decoration: none;
  color: black;
  text-align: center;
  text-transform: uppercase;
  background: #FBB040;
}

.mf_button a:hover,
.mf_button a:visited,
.mf_button a:link,
.mf_button a:active {
  text-decoration: none;
}

.mf_button:hover {
  background: #FFDE17;
}

.mf_button_back {
  border-radius: 18px;
  padding: 5px;
  margin: 5px;
  text-decoration: none;
  color: black;
  text-align: center;
  text-transform: uppercase;
  background: #F5F5F5;
}

.delete-icon {
  color: black;
  transition: color 0.3s ease;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.delete-icon:hover {
  color: red;
}

.card-month {
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1.25rem;
  background-color: #f4f4f4;
  border: 2px solid #e0e0e0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.card-month .card-body {
  width: 100%;
  padding: 0;
}
.card-month h6.text-muted {
  font-size: 0.875rem;
  margin-bottom: 0.5rem !important;
}
.card-month h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-month .d-flex.justify-content-between.align-items-center {
  height: auto;
  width: 100%;
}
.card-month .d-flex.align-items-center {
  gap: 4px;
}
.card-month .d-flex.align-items-center svg {
  width: 20px;
  height: 20px;
}
.card-month .text-success,
.card-month .text-danger {
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.card-month .text-success {
  color: #28a745 !important;
}
.card-month .text-danger {
  color: #dc3545 !important;
}
.card-month .text-muted {
  color: #6c757d !important;
}
.card-month .text-muted.small {
  font-size: 0.75rem;
  margin-top: 4px;
}

.col-md-3:nth-child(1) .card-month:hover {
  border: 2px solid #007bff;
  background: linear-gradient(to right bottom, white, rgba(0, 123, 255, 0.15));
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}
.col-md-3:nth-child(2) .card-month:hover {
  border: 2px solid #28a745;
  background: linear-gradient(to right bottom, white, rgba(40, 167, 69, 0.15));
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}
.col-md-3:nth-child(3) .card-month:hover {
  border: 2px solid #ffc107;
  background: linear-gradient(to right bottom, white, rgba(255, 193, 7, 0.15));
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}
.col-md-3:nth-child(4) .card-month:hover {
  border: 2px solid #6f42c1;
  background: linear-gradient(to right bottom, white, rgba(111, 66, 193, 0.15));
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.2);
}

@media (max-width: 768px) {
  .col-md-3 {
    margin-bottom: 1rem;
  }
  .card-month {
    height: auto;
    min-height: 120px;
  }
}
.btn-outline-primary, .btn-outline-success, .btn-outline-danger {
  border-width: 2px;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.cuisine-card {
  perspective: 1000px;
  height: 300px;
}
.cuisine-card:hover .cuisine-card-inner {
  transform: rotateY(180deg);
}

.cuisine-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.cuisine-card-front,
.cuisine-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cuisine-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
}

.cuisine-icon {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 1rem;
}

.cuisine-content h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}
.cuisine-content .options {
  color: #7f8c8d;
  font-style: italic;
}
.cuisine-content .price {
  color: #27ae60;
  font-weight: bold;
  margin-top: 1rem;
}

.cuisine-image {
  background: white;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.cuisine-image .material-icons {
  font-size: 64px;
  color: #e67e22;
}

.demand-chart {
  padding: 2rem;
  background-color: #f9f9f9;
  margin: 2rem auto;
  max-width: 800px;
}
.demand-chart h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 300px;
  width: 90%;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  margin: 20px auto;
  padding: 20px;
  gap: 5px;
}

.bar {
  width: 35px;
  margin: 0 2px;
  text-align: center;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.3s ease;
}
.bar span {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-size: 0.9rem;
}

.food-trucks-container {
  background-color: #f8f9fa;
  padding: 2rem 1rem;
  height: 100%;
  overflow-y: hidden; /* Prevents scrolling of the entire container */
}

.map-column {
  height: 100vh; /* Full viewport height */
  position: sticky;
  top: 0;
  overflow-y: hidden;
}

.fixed-map {
  height: 100%; /* Ensures the map takes the full height of its container */
  width: 100%;
}

.scrollable-column {
  height: 100vh;
  overflow-y: auto; /* Allows scrolling for the food truck list */
}

.default-image {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.default-image .material-icons {
  font-size: 77px;
  color: white;
}

.bg-color-0 {
  background-color: #FF9AA2;
}

.bg-color-1 {
  background-color: #FFB7B2;
}

.bg-color-2 {
  background-color: #FFDAC1;
}

.bg-color-3 {
  background-color: #E2F0CB;
}

.bg-color-4 {
  background-color: #B5EAD7;
}

.card-img-top {
  height: 240px;
  overflow: hidden;
}

.rounded-circle {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.card-text {
  font-size: 0.9rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: normal;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

@media (max-width: 767px) {
  .food-trucks-container {
    height: auto;
    overflow: visible;
  }
  .map-column {
    height: 50vh;
    position: static;
  }
  .fixed-map {
    position: static;
  }
  .scrollable-column {
    height: auto;
    overflow-y: visible;
  }
}
@media (max-width: 575.98px) {
  .row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
}
.group {
  font-size: large;
  text-transform: uppercase;
}

.card_title a {
  color: #000000;
  text-decoration: none;
  font-size: x-large;
}

.avatar {
  width: 40px;
  border-radius: 50%;
}

.avatar-large {
  width: 56px;
  border-radius: 50%;
}

.avatar-bordered {
  width: 40px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: white 1px solid;
}

.avatar-square {
  width: 40px;
  border-radius: 0px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: white 1px solid;
}

.table-full-width {
  width: 100%;
  table-layout: fixed;
}

.table-full-width th,
.table-full-width td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.col-status {
  width: 15%;
}

.col-client {
  width: 15%;
}

.col-date {
  width: 15%;
}

.col-guests {
  width: 10%;
}

.col-city {
  width: 15%;
}

.col-event {
  width: 15%;
}

.col-partners {
  width: 15%;
}

.booking-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 200px);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.booking-header .title-edit {
  display: flex;
  align-items: center;
}
.booking-header .title-edit h1 {
  font-size: 24px;
  margin: 0;
  margin-right: 10px;
}
.booking-header .title-edit .edit-icon {
  color: #333;
  text-decoration: none;
}
.booking-header .title-edit .edit-icon:hover {
  color: #666;
}
.booking-header .title-edit .edit-icon .material-icons {
  font-size: 20px;
}

.booking-status {
  display: flex;
  align-items: center;
}
.booking-status .status-label {
  margin-right: 10px;
}
.booking-status .status-select {
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.booking-content {
  display: flex;
  gap: 20px;
  flex: 1;
}

.booking-info {
  flex: 2;
}

.info-section {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.info-section h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.info-item label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.booking-map {
  height: 200px;
  margin-bottom: 15px;
  background-color: #e0e0e0;
  z-index: 1;
}

.address-link {
  color: #0066cc;
  text-decoration: none;
}
.address-link:hover {
  text-decoration: underline;
}

.booking-partners {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}
.booking-partners h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.partners-list {
  margin-bottom: 15px;
}

.partner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.partner-item:last-child {
  border-bottom: none;
}

.partner-info {
  display: flex;
  flex-direction: column;
}

.partner-name {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.partner-name:hover {
  text-decoration: underline;
}

.partner-distance {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}
.partner-distance .material-icons {
  font-size: 1em;
  margin-right: 5px;
}

.add-partner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.add-partner-btn:hover {
  background-color: #45a049;
}
.add-partner-btn .material-icons {
  margin-right: 5px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#partner-name {
  margin-bottom: 20px;
}

#partner-details {
  margin-bottom: 20px;
}

.btn-group {
  margin-top: 20px;
}

.comment-content {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px;
  min-height: 100px;
}

.status-badge {
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn-outline-primary, .btn-outline-success, .btn-outline-danger {
  border-width: 2px;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.card_title a {
  color: #000000;
  text-decoration: none;
  font-size: x-large;
}

.custom-marker {
  background: transparent;
  border: none;
}
.custom-marker div {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.leaflet-popup-content-wrapper {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.leaflet-popup-content {
  margin: 0;
  min-width: 200px;
}

.leaflet-popup-tip {
  border-radius: 0.25rem;
}

.leaflet-marker-icon {
  transition: all 0.2s ease;
}
.leaflet-marker-icon:hover {
  transform: scale(1.1);
  z-index: 1000 !important;
}

.pagination a, .pagination span.current, .pagination span.gap {
  float: left;
  padding: 0 14px;
  line-height: 38px;
  text-decoration: none;
  background-color: white;
  border: 1px solid #DDD;
  border-left-width: 0;
}

.pagination {
  border-left: 1px solid #ddd;
}
.pagination .first {
  padding: 0;
  float: none;
  border: none;
}
.pagination .prev {
  padding: 0;
  float: none;
  border: none;
}
.pagination .page {
  padding: 0;
  float: none;
  border: none;
}
.pagination .next {
  padding: 0;
  float: none;
  border: none;
}
.pagination .last {
  padding: 0;
  float: none;
  border: none;
}

.prestation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 15px;
}

.prestation-item {
  margin: 0 !important;
}

.prestation-item label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 6px 10px;
  border: 1px solid #007bff;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.85em;
  background-color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prestation-item label:hover {
  background-color: #e7f1ff;
  color: #007bff;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.1);
}

.prestation-item input[type=checkbox]:checked + label {
  background-color: #007bff;
  color: white;
  border-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.2);
}

.form-control-file {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
}

.bi-chevron-left {
  font-size: 2rem !important;
}

.profile-header {
  background-color: #e9ecef;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-gallery img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.list-group-item {
  border: none;
  padding: 0.5rem 0;
}

.badge {
  font-weight: 500;
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

.mf-search-page {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.mf-search-page .mf-search-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
}
.mf-search-page .mf-search-title {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.mf-search-page .mf-search-form {
  display: flex;
  flex-direction: column;
}
.mf-search-page .mf-search-input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.mf-search-page .mf-search-input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  outline: none;
}
.mf-search-page .mf-search-button {
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #6e8efb, #4a90e2);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.mf-search-page .mf-search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #5a7ff0, #3980d8);
}
.mf-search-page .mf-search-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.mf-search-page .mf-search-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

@media (max-width: 576px) {
  .mf-search-page .mf-search-container {
    width: 95%;
    padding: 2rem;
  }
}
.search_field {
  background-color: white;
  border-radius: 5px;
  height: 4em;
  width: 25em;
  padding-left: 12px;
}

.search_button {
  background: transparent;
  color: white;
  font-size: 30px;
  border: 0;
}

.card-body-calendar {
  border: 3px solid #969696;
  border-radius: 0.25rem;
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
}

#daily-bookings-card {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
#daily-bookings-card .card-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}

#calendar-filter-form {
  padding: 5px;
  margin: 5px;
}
#calendar-filter-form .form-select,
#calendar-filter-form .form-control {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px 12px;
}
#calendar-filter-form .form-select:focus,
#calendar-filter-form .form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#calendar-filter-form .btn {
  padding: 8px 16px;
  font-weight: 500;
}
#calendar-filter-form .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}
#calendar-filter-form .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}
#calendar-filter-form .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}
#calendar-filter-form .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.tooltip .tooltip-inner {
  border: 2px solid #fff;
}

@media (max-width: 768px) {
  #calendar-filter-form .col-md-3,
  #calendar-filter-form .col-auto {
    margin-bottom: 10px;
  }
}
.mf_button {
  border-radius: 18px;
  padding: 5px;
  padding-left: 9px;
  padding-right: 9px;
  margin: 5px;
  text-decoration: none;
  color: black;
  text-align: center;
  text-transform: uppercase;
  background: #FBB040;
}

.mf_button a:hover,
.mf_button a:visited,
.mf_button a:link,
.mf_button a:active {
  text-decoration: none;
}

.mf_button:hover {
  background: #FFDE17;
}

.mf_button_back {
  border-radius: 18px;
  padding: 5px;
  margin: 5px;
  text-decoration: none;
  color: black;
  text-align: center;
  text-transform: uppercase;
  background: #F5F5F5;
}

.delete-icon {
  color: black;
  transition: color 0.3s ease;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.delete-icon:hover {
  color: red;
}

.main-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  border: 5px solid #000;
  border-radius: 12px;
  background-color: #fff;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: #f1f3f5;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem;
  font-weight: 600;
}

.card-body {
  padding: 1.5rem;
}

.card-month {
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1.25rem;
  background-color: #f4f4f4;
  border: 2px solid #e0e0e0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.card-month .card-body {
  width: 100%;
  padding: 0;
}
.card-month h6.text-muted {
  font-size: 0.875rem;
  margin-bottom: 0.5rem !important;
}
.card-month h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-month .d-flex.justify-content-between.align-items-center {
  height: auto;
  width: 100%;
}
.card-month .d-flex.align-items-center {
  gap: 4px;
}
.card-month .d-flex.align-items-center svg {
  width: 20px;
  height: 20px;
}
.card-month .text-success,
.card-month .text-danger {
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.card-month .text-success {
  color: #28a745 !important;
}
.card-month .text-danger {
  color: #dc3545 !important;
}
.card-month .text-muted {
  color: #6c757d !important;
}
.card-month .text-muted.small {
  font-size: 0.75rem;
  margin-top: 4px;
}

.col-md-3:nth-child(1) .card-month:hover {
  border: 2px solid #007bff;
  background: linear-gradient(to right bottom, white, rgba(0, 123, 255, 0.15));
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}
.col-md-3:nth-child(2) .card-month:hover {
  border: 2px solid #28a745;
  background: linear-gradient(to right bottom, white, rgba(40, 167, 69, 0.15));
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}
.col-md-3:nth-child(3) .card-month:hover {
  border: 2px solid #ffc107;
  background: linear-gradient(to right bottom, white, rgba(255, 193, 7, 0.15));
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}
.col-md-3:nth-child(4) .card-month:hover {
  border: 2px solid #6f42c1;
  background: linear-gradient(to right bottom, white, rgba(111, 66, 193, 0.15));
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.2);
}

@media (max-width: 768px) {
  .col-md-3 {
    margin-bottom: 1rem;
  }
  .card-month {
    height: auto;
    min-height: 120px;
  }
}
.messages-container {
  height: 400px;
  overflow-y: auto;
  padding: 1rem;
}

.message {
  margin-bottom: 1rem;
}
.message.inbound .message-bubble {
  background-color: #f1f0f0;
  border-radius: 15px 15px 15px 0;
}
.message.outbound .message-bubble {
  background-color: #dcf8c6;
  border-radius: 15px 15px 0 15px;
}
.message.outbound .message-content {
  text-align: right;
}

.message-bubble {
  display: inline-block;
  max-width: 75%;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}

.message-meta {
  font-size: 0.75rem;
  color: #666;
}

.status-icon {
  color: #34b7f1;
}

.demand-chart {
  padding: 2rem;
  background-color: #f9f9f9;
  margin: 2rem auto;
  max-width: 800px;
}
.demand-chart h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 300px;
  width: 90%;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  margin: 20px auto;
  padding: 20px;
  gap: 5px;
}

.bar {
  width: 35px;
  margin: 0 2px;
  text-align: center;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.3s ease;
}
.bar span {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-size: 0.9rem;
}

.requirements {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
}
.requirements h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.requirement-item:hover {
  transform: translateY(-5px);
}
.requirement-item .material-icons {
  font-size: 2rem;
  color: #e67e22;
}
.requirement-item .content h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.requirement-item .content p {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

.calendar-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.calendar-loader .spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgba(79, 70, 229, 0.1);
  border-top-color: #4F46E5; /* Indigo-600 */
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.calendar-container {
  position: relative;
  min-height: 400px;
}

.custom-marker {
  background: transparent;
  border: none;
}
.custom-marker div {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.leaflet-popup-content-wrapper {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.leaflet-popup-content {
  margin: 0;
  min-width: 200px;
}

.leaflet-popup-tip {
  border-radius: 0.25rem;
}

.leaflet-marker-icon {
  transition: all 0.2s ease;
}
.leaflet-marker-icon:hover {
  transform: scale(1.1);
  z-index: 1000 !important;
}

.messages-container {
  height: 400px;
  overflow-y: auto;
  padding: 1rem;
}

.message {
  margin-bottom: 1rem;
}
.message.inbound .message-bubble {
  background-color: #f1f0f0;
  border-radius: 15px 15px 15px 0;
}
.message.outbound .message-bubble {
  background-color: #dcf8c6;
  border-radius: 15px 15px 0 15px;
}
.message.outbound .message-content {
  text-align: right;
}

.message-bubble {
  display: inline-block;
  max-width: 75%;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}

.message-meta {
  font-size: 0.75rem;
  color: #666;
}

.status-icon {
  color: #34b7f1;
}

.pagination a, .pagination span.current, .pagination span.gap {
  float: left;
  padding: 0 14px;
  line-height: 38px;
  text-decoration: none;
  background-color: white;
  border: 1px solid #DDD;
  border-left-width: 0;
}

.pagination {
  border-left: 1px solid #ddd;
}
.pagination .first {
  padding: 0;
  float: none;
  border: none;
}
.pagination .prev {
  padding: 0;
  float: none;
  border: none;
}
.pagination .page {
  padding: 0;
  float: none;
  border: none;
}
.pagination .next {
  padding: 0;
  float: none;
  border: none;
}
.pagination .last {
  padding: 0;
  float: none;
  border: none;
}

.profile-header {
  background-color: #e9ecef;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-gallery img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.list-group-item {
  border: none;
  padding: 0.5rem 0;
}

.badge {
  font-weight: 500;
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

.card-body-calendar {
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  padding: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.partner-calendar .simple-calendar {
  margin: 0.5rem;
}
.partner-calendar .simple-calendar table {
  border-collapse: separate;
  border-spacing: 2px;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  overflow: hidden;
  table-layout: fixed;
}
.partner-calendar .simple-calendar td.day,
.partner-calendar .simple-calendar td.day.wday-0,
.partner-calendar .simple-calendar td.day.wday-1,
.partner-calendar .simple-calendar td.day.wday-2,
.partner-calendar .simple-calendar td.day.wday-3,
.partner-calendar .simple-calendar td.day.wday-4,
.partner-calendar .simple-calendar td.day.wday-5,
.partner-calendar .simple-calendar td.day.wday-6 {
  border: none !important;
  padding: 0;
}
.partner-calendar .simple-calendar .calendar-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
}
.partner-calendar .simple-calendar .calendar-heading .calendar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 1rem;
  color: #1F2937;
}
.partner-calendar .simple-calendar .calendar-heading .calendar-nav-btn {
  background: none;
  border: none;
  color: #4F46E5;
  font-size: 1.25rem;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.partner-calendar .simple-calendar .calendar-heading .calendar-nav-btn:hover {
  color: #4338CA;
}
.partner-calendar .simple-calendar .calendar-heading .calendar-nav-btn.prev-btn {
  left: 0;
}
.partner-calendar .simple-calendar .calendar-heading .calendar-nav-btn.next-btn {
  right: 0;
}
.partner-calendar .simple-calendar .day {
  height: 120px;
  padding: 0.25rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #E5E7EB;
  background-color: #ffffff;
  transition: all 0.15s ease;
  border-radius: 0.375rem;
}
.partner-calendar .simple-calendar .day.selected {
  background-color: rgba(79, 70, 229, 0.05) !important;
  border-color: rgba(79, 70, 229, 0.3) !important;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.3);
}
.partner-calendar .simple-calendar .day.today {
  background-color: #EEF2FF;
  border-color: #818CF8;
}
.partner-calendar .simple-calendar .day.past {
  opacity: 0.7;
}
.partner-calendar .simple-calendar .day.wday-0, .partner-calendar .simple-calendar .day.wday-6 {
  background-color: #F9FAFB;
}
.partner-calendar .simple-calendar .day.prev-month, .partner-calendar .simple-calendar .day.next-month {
  opacity: 0.6;
  background-color: #F3F4F6;
}
.partner-calendar .simple-calendar .day.prev-month .bookings-calendar-date, .partner-calendar .simple-calendar .day.next-month .bookings-calendar-date {
  color: #9CA3AF;
}
.partner-calendar .simple-calendar .day:hover {
  background-color: #F5F3FF !important;
  z-index: 1;
}
.partner-calendar .simple-calendar .day .calendar-cell {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.partner-calendar .simple-calendar .day .calendar-cell .calendar-date {
  font-weight: 600;
  font-size: 0.875rem;
  color: #4B5563;
  margin-bottom: 4px;
}
.partner-calendar .simple-calendar .day .calendar-cell .bookings-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 0.75rem;
}
.partner-calendar .simple-calendar .day .calendar-cell .booking-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.partner-calendar .simple-calendar .day .calendar-cell .blocked-icon {
  position: absolute;
  top: 3px;
  right: 3px;
  color: #EF4444;
  font-size: 0.875rem;
}
.partner-calendar .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #E5E7EB;
}
.partner-calendar #date_selector {
  width: auto;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #374151;
}
.partner-calendar #date_selector:focus {
  outline: none;
  border-color: #A5B4FC;
  box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.45);
}

#daily-bookings-card {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.booking-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.75rem;
  border-bottom: 1px solid #E5E7EB;
  transition: background-color 0.15s ease;
}
.booking-item:hover {
  background-color: #F9FAFB;
  text-decoration: none;
}
.booking-item:last-child {
  border-bottom: none !important;
}
.booking-item .status-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.booking-item h6 {
  font-weight: 600;
  color: #1F2937;
  font-size: 0.875rem;
}
.booking-item small {
  font-size: 0.75rem;
  color: #6B7280;
}

#calendar-filter-form {
  padding: 0.5rem;
  margin: 0.5rem;
}
#calendar-filter-form .form-select,
#calendar-filter-form .form-control {
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
#calendar-filter-form .form-select:focus,
#calendar-filter-form .form-control:focus {
  border-color: #A5B4FC;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.45);
}
#calendar-filter-form .btn {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
#calendar-filter-form .btn-primary {
  background-color: #4F46E5;
  border-color: #4F46E5;
}
#calendar-filter-form .btn-primary:hover {
  background-color: #4338CA;
  border-color: #4338CA;
}
#calendar-filter-form .btn-secondary {
  background-color: #6B7280;
  border-color: #6B7280;
}
#calendar-filter-form .btn-secondary:hover {
  background-color: #4B5563;
  border-color: #374151;
}

.tooltip .tooltip-inner {
  border: 1px solid #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  #calendar-filter-form .col-md-3,
  #calendar-filter-form .col-auto {
    margin-bottom: 0.75rem;
  }
  .partner-calendar .simple-calendar table {
    border-spacing: 1px;
  }
  .partner-calendar .simple-calendar .day {
    height: 90px;
  }
}
.bg-indigo-20 {
  background-color: #EEF2FF;
}

.bg-indigo-50 {
  background-color: #E0E7FF;
}

.bg-indigo-200 {
  background-color: #C7D2FE;
}

.prestation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 15px;
}

.prestation-item {
  margin: 0 !important;
}

.prestation-item label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 6px 10px;
  border: 1px solid #007bff;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.85em;
  background-color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prestation-item label:hover {
  background-color: #e7f1ff;
  color: #007bff;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.1);
}

.prestation-item input[type=checkbox]:checked + label {
  background-color: #007bff;
  color: white;
  border-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.2);
}

.form-control-file {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
}

.bi-chevron-left {
  font-size: 2rem !important;
}

.requirements {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
}
.requirements h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.requirement-item:hover {
  transform: translateY(-5px);
}
.requirement-item .material-icons {
  font-size: 2rem;
  color: #e67e22;
}
.requirement-item .content h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.requirement-item .content p {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

.search_field {
  background-color: white;
  border-radius: 5px;
  height: 4em;
  width: 25em;
  padding-left: 12px;
}

.search_button {
  background: transparent;
  color: white;
  font-size: 30px;
  border: 0;
}

.mf-search-page {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.mf-search-page .mf-search-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
}
.mf-search-page .mf-search-title {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.mf-search-page .mf-search-form {
  display: flex;
  flex-direction: column;
}
.mf-search-page .mf-search-input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.mf-search-page .mf-search-input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  outline: none;
}
.mf-search-page .mf-search-button {
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #6e8efb, #4a90e2);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.mf-search-page .mf-search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #5a7ff0, #3980d8);
}
.mf-search-page .mf-search-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.mf-search-page .mf-search-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

@media (max-width: 576px) {
  .mf-search-page .mf-search-container {
    width: 95%;
    padding: 2rem;
  }
}
.main-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  border: 5px solid #000;
  border-radius: 12px;
  background-color: #fff;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: #f1f3f5;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem;
  font-weight: 600;
}

.card-body {
  padding: 1.5rem;
}
