@charset "UTF-8";
/* Mobile Topbar */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
.mobile-topbar.hide {
  transform: translateY(-100%);
}
.mobile-topbar .search-box-mobile input {
  height: 50px;
  border: 1px solid #eaecf0 !important;
  margin-top: 13px;
  width: 100%;
  background: #fff;
  font-size: 13px;
  color: #252b36;
  display: none;
}
.mobile-topbar .search-box-mobile input.show {
  display: block;
}
.mobile-topbar .search-container {
  position: absolute;
  top: 16px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #eaecf0;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-topbar .search-container .search-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  font-size: 14px;
}
.mobile-topbar .search-container .search-input:focus {
  outline: none;
  border-color: #227065;
}
.mobile-topbar .filters-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 53px);
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  font-size: 14px;
  color: #252B36;
  padding: 10px 12px;
}
.mobile-topbar .filters-toggle span svg {
  width: 17px;
  position: relative;
  top: -1px;
}
.mobile-topbar .filters-toggle .filter-count {
  background: #EFF9F0;
  color: #227065;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* Mobile Filters Panel */
.mobile-filters-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.mobile-filters-panel.show {
  opacity: 1;
}
.mobile-filters-panel.show .panel-wrapper {
  transform: translateX(0);
}
.mobile-filters-panel .visit-option.selected input {
  background-color: #227065;
  border-color: #227065;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.mobile-filters-panel .panel-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.mobile-filters-panel .panel-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #EAECF0;
  background: #FFFFFF;
}
.mobile-filters-panel .panel-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #252B36;
}
.mobile-filters-panel .panel-header .close-filters {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #737780;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-filters-panel .panel-header .close-filters:hover {
  color: #252B36;
}
.mobile-filters-panel .panel-content {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem;
  background: #F9FAFB;
}
.mobile-filters-panel .panel-content .app-filters {
  background: #fff;
  border: 1px solid #efefef;
  padding: 17px;
}
.mobile-filters-panel .panel-content .app-filters .filter-section {
  margin-bottom: 1.5rem;
}
.mobile-filters-panel .panel-content .app-filters .filter-section:last-child {
  margin-bottom: 0;
}
.mobile-filters-panel .panel-content .app-filters .filter-section h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 14px;
  font-weight: 400;
}
.mobile-filters-panel .panel-content .app-filters .form-select,
.mobile-filters-panel .panel-content .app-filters .form-control {
  border: 1px solid #EAECF0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 14px;
}
.mobile-filters-panel .panel-content .app-filters .form-select:focus,
.mobile-filters-panel .panel-content .app-filters .form-control:focus {
  border-color: #227065;
  box-shadow: none;
  outline: none;
}
.mobile-filters-panel .panel-content .app-filters .visit-option label {
  margin: 0;
  cursor: pointer;
}
.mobile-filters-panel .panel-footer {
  flex: 0 0 auto;
  padding: 1rem;
  background: #FFFFFF;
  border-top: 1px solid #EAECF0;
  display: flex;
  gap: 1rem;
}
.mobile-filters-panel .panel-footer button {
  flex: 1;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-filters-panel .panel-footer button.btn-clear {
  background: #F9FAFB;
  color: #252B36;
}
.mobile-filters-panel .panel-footer button.btn-clear:hover {
  background: #F1F1F1;
}
.mobile-filters-panel .panel-footer button.btn-apply {
  background: #227065;
  color: #FFFFFF;
}
.mobile-filters-panel .panel-footer button.btn-apply:hover {
  background: #1c5c53;
}

@media (max-width: 768px) {
  .mobile-topbar {
    display: block;
  }
  .app-sidebar {
    display: none;
  }
  .main-content {
    margin-top: 120px;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #FFFFFF;
  }
}
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  background-color: #F9FAFB;
}
body.scrolled .site-header {
  top: -100px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.logo-system img, .logo-system svg {
  width: 130px;
  height: auto;
}

/* Header Styles - Add this to your CSS file */
.site-header {
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .site-header {
    padding: 23px 0;
  }
}

.dropdown-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.header-contact-info {
  font-size: 14px;
}

.contact-section p {
  color: #555;
  line-height: 1.2;
}

.contact-phone a, .contact-email a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.phone-icon-circle, .email-icon-circle, .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3c7a6d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
}

.mobile-menu-content {
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.mobile-menu-content .contact-item {
  font-size: 16px;
}

.mobile-menu-content .contact-item a {
  color: #333;
  text-decoration: none;
}

@media (max-width: 767px) {
  .logo a {
    font-size: 20px;
  }
}
#app .back-page a {
  color: #252B36;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  transition: all 0.5s;
  text-decoration: none;
}
#app .back-page a:hover {
  color: #227065;
}
@media (min-width: 991px) {
  #app .app-sidebar {
    position: sticky;
    top: 30px;
  }
}
#app .app-sidebar .app-search input {
  height: 46px;
  gap: 8px;
  border-radius: 8px;
  border-width: 1px;
  color: #737780;
  font-size: 14px;
}
#app .app-sidebar .app-search input::-moz-placeholder {
  color: #9C9C9C;
}
#app .app-sidebar .app-search input::placeholder {
  color: #9C9C9C;
}
#app .app-sidebar .app-search input:focus {
  box-shadow: none;
  border-color: #227065;
}
#app .app-sidebar .app-search .search-box {
  background-color: #FFFFFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  border: 1px solid #EAECF0;
}
#app .app-sidebar .app-search .search-box svg {
  width: 14px;
  fill: #737780;
}
#app .app-sidebar .app-filters {
  background-color: #FFFFFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #EAECF0;
}
#app .app-sidebar .app-filters .filter-section h5 {
  color: #252B36;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
#app .app-sidebar .app-filters .filter-section .badge {
  background-color: #E5E7EB !important;
  color: #227065 !important;
  font-weight: 500;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .app-sidebar .app-filters .filter-section select, #app .app-sidebar .app-filters .filter-section .form-select {
  height: 46px;
  gap: 8px;
  border-radius: 8px;
  border-width: 1px;
  padding: 12px;
  color: #737780;
  font-size: 14px;
}
#app .app-sidebar .app-filters .filter-section select:focus, #app .app-sidebar .app-filters .filter-section .form-select:focus {
  box-shadow: none;
  border-color: #227065;
}
#app .app-sidebar .app-filters .filter-section .text-muted {
  font-size: 14px;
  color: #737780 !important;
}
#app .app-sidebar .app-filters .filter-section .visit-option .form-check {
  border: 1px solid #EAECF0;
  border-radius: 8px;
  cursor: pointer;
  margin: 0;
}
#app .app-sidebar .app-filters .filter-section .visit-option .form-check:hover {
  background-color: #F9FAFB;
}
#app .app-sidebar .app-filters .filter-section .visit-option .form-check .form-check-input {
  margin-top: 0;
  margin-left: 0;
}
#app .app-sidebar .app-filters .filter-section .visit-option .form-check .form-check-input:checked {
  background-color: #227065;
  border-color: #227065;
}
#app .app-sidebar .app-filters .filter-section .visit-option .form-check .form-check-input:focus {
  box-shadow: none;
}
#app .app-sidebar .app-filters .filter-section .visit-option .form-check span {
  font-size: 14px;
  color: #737780;
}
#app .app-sidebar .app-filters .filter-section .visit-option.selected .form-check {
  border-color: #227065;
  background-color: rgba(34, 112, 101, 0.05);
}
#app .app-sidebar .app-filters .filter-section .location-select select {
  border-color: #EAECF0;
}
#app .app-sidebar .app-filters .filter-section .location-select select:focus {
  box-shadow: none;
  border-color: #227065;
}
#app .app-sidebar .app-filters .filter-section .location-select .text-muted {
  color: #737780 !important;
  font-size: 13px;
}
#app .app-sidebar .app-filters .filter-section .price-slider .form-range {
  height: 6px;
}
#app .app-sidebar .app-filters .filter-section .price-slider .form-range::-webkit-slider-thumb {
  background: #227065;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
#app .app-sidebar .app-filters .filter-section .price-slider .form-range::-moz-range-thumb {
  background: #227065;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
#app .app-sidebar .app-filters .filter-section .price-slider .d-flex {
  font-size: 12px;
  color: #737780;
}
#app .app-sidebar .app-filters .filter-section .form-switch .form-check-input {
  width: 40px;
  height: 22px;
  background-color: #EAECF0;
}
#app .app-sidebar .app-filters .filter-section .form-switch .form-check-input:checked {
  background-color: #227065;
  border-color: #227065;
}
#app .app-sidebar .app-filters .filter-section .form-switch .form-check-input:focus {
  box-shadow: none;
}
#app .app-sidebar .app-filters .filter-section .btn-link {
  color: #252B36;
  font-size: 14px;
}
#app .app-sidebar .app-filters .filter-section .btn-link:hover {
  color: #227065;
}
#app .app-sidebar .app-filters .filter-section .btn-link svg {
  margin-right: 5px;
}
#app .doctor-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #EAECF0;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  padding: 24px;
  margin-bottom: 16px;
  /* Dodatkowe style dla kart lekarzy */
  /* Style dla dostępnych terminów */
  /* Style dla braku dostępnych terminów */
  /* Dodatkowe style dla online info */
  /* Style dla przycisku lokalizacji */
  /* Poprawki do małych ekranów */
}
#app .doctor-card.doctor-card-home {
  padding: 0;
}
@media (max-width: 767px) {
  #app .doctor-card {
    padding: 15px;
  }
}
#app .doctor-card .doctor-avatar {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #E5E7EB;
}
@media (max-width: 767px) {
  #app .doctor-card .doctor-avatar {
    width: 90px;
    height: 90px;
  }
}
#app .doctor-card .doctor-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#app .doctor-card .doctor-details {
  flex: 1;
}
#app .doctor-card .doctor-details .doctor-name {
  font-size: 18px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  #app .doctor-card .doctor-details .doctor-name {
    font-size: 16px;
  }
}
#app .doctor-card .doctor-details .doctor-name svg {
  color: #227065;
}
#app .doctor-card .doctor-details .doctor-specialty {
  color: #737780;
  font-size: 16px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  #app .doctor-card .doctor-details .doctor-specialty {
    margin-bottom: 4px;
    font-size: 14px;
  }
}
#app .doctor-card .doctor-details .doctor-rating {
  display: flex;
  align-items: center;
}
#app .doctor-card .doctor-details .doctor-rating .stars {
  display: flex;
  align-items: center;
}
#app .doctor-card .doctor-details .doctor-rating .stars svg {
  margin-right: 2px;
  width: 12px;
  height: auto;
}
#app .doctor-card .doctor-details .doctor-rating .stars .rating-count {
  color: #737780;
  font-size: 14px;
  margin-left: 6px;
}
@media (max-width: 767px) {
  #app .doctor-card .doctor-details .doctor-rating .stars .rating-count {
    font-size: 12px;
  }
}
#app .doctor-card .doctor-details .doctor-accepts {
  font-size: 12px;
}
#app .doctor-card .doctor-details .doctor-accepts .label {
  font-weight: 500;
  color: #252B36;
}
#app .doctor-card .doctor-details .doctor-accepts .value {
  color: #737780;
}
#app .doctor-card .visit-type-tabs {
  border-bottom: 1px solid #EAECF0;
}
#app .doctor-card .visit-type-tabs .nav-tabs {
  border-bottom: none;
}
#app .doctor-card .visit-type-tabs .nav-tabs .nav-link {
  color: #737780;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 8px 16px;
  font-weight: 500;
  background-color: transparent;
}
#app .doctor-card .visit-type-tabs .nav-tabs .nav-link.active {
  color: #227065;
  border-bottom: 3px solid #227065;
}
#app .doctor-card .visit-type-tabs .nav-tabs .nav-link:hover {
  color: #227065;
}
#app .doctor-card .location h5 {
  font-size: 16px;
  font-weight: 500;
  color: #252B36;
}
#app .doctor-card .location p {
  font-size: 14px;
  color: #737780;
}
#app .doctor-card .location svg {
  color: #227065;
}
#app .doctor-card .services h5 {
  font-size: 16px;
  font-weight: 500;
  color: #252B36;
  margin-bottom: 4px;
}
#app .doctor-card .services .small {
  font-size: 14px;
}
#app .doctor-card .services .service-dropdown {
  background-color: #EFF9F0;
  border: none;
  padding: 12px 36px 12px 16px;
  border-radius: 8px;
  color: #227065;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app .doctor-card .services .service-dropdown:hover, #app .doctor-card .services .service-dropdown:focus {
  background-color: #d7dae0;
}
#app .doctor-card .services .service-dropdown::after {
  display: none;
}
#app .doctor-card .services .service-dropdown svg {
  color: #227065;
  position: absolute;
  top: 43%;
  right: 11px;
  transform: translate(0, -50%);
}
#app .doctor-card .col-calendar {
  border-left: 1px solid #EAECF0;
  align-items: center;
  display: flex;
}
#app .doctor-card .calendar-container {
  padding-left: 40px;
  padding-right: 30px;
  height: 100%;
}
@media (max-width: 992px) {
  #app .doctor-card .calendar-container {
    border-left: none;
    border-top: 1px solid #EAECF0;
    padding-left: 0;
    padding-top: 24px;
    margin-top: 24px;
  }
}
#app .doctor-card .calendar-container .calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
}
#app .doctor-card .calendar-container .calendar-nav .btn-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #EAECF0;
  border-radius: 50%;
  color: #252B36;
  position: absolute;
}
#app .doctor-card .calendar-container .calendar-nav .btn-icon svg {
  width: 13px;
  height: auto;
}
#app .doctor-card .calendar-container .calendar-nav .btn-icon.calendar-nav-prev {
  left: -28px;
}
#app .doctor-card .calendar-container .calendar-nav .btn-icon.calendar-nav-next {
  right: -35px;
}
#app .doctor-card .calendar-container .calendar-nav .btn-icon:hover {
  color: #227065;
  border-color: #227065;
}
#app .doctor-card .calendar-container .calendar-nav .days-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  justify-content: space-between;
  gap: 5px;
}
#app .doctor-card .calendar-container .calendar-nav .days-scroll::-webkit-scrollbar {
  display: none;
}
#app .doctor-card .calendar-container .calendar-nav .days-scroll .day-column {
  text-align: center;
  cursor: pointer;
  min-width: 60px;
}
#app .doctor-card .calendar-container .calendar-nav .days-scroll .day-column .day-name {
  font-size: 14px;
  color: #737780;
  margin-bottom: 4px;
}
#app .doctor-card .calendar-container .calendar-nav .days-scroll .day-column .day-date {
  font-size: 14px;
  color: #252B36;
  font-weight: 500;
}
#app .doctor-card .calendar-container .calendar-nav .days-scroll .day-column.active .day-name, #app .doctor-card .calendar-container .calendar-nav .days-scroll .day-column.active .day-date {
  color: #227065;
  font-weight: 600;
}
#app .doctor-card .calendar-container .time-slots {
  display: flex;
  gap: 16px;
}
#app .doctor-card .calendar-container .time-slots .time-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#app .doctor-card .calendar-container .time-slots .time-column .time-slot {
  height: 29px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
#app .doctor-card .calendar-container .time-slots .time-column .time-slot.available {
  background-color: #EFF9F0;
  color: #227065;
}
#app .doctor-card .calendar-container .time-slots .time-column .time-slot.available:hover {
  background-color: #d7dae0;
}
#app .doctor-card .calendar-container .time-slots .time-column .time-slot.disabled {
  background-color: transparent;
  color: #9C9C9C;
  cursor: default;
}
#app .doctor-card .calendar-container .show-more-times .btn-link {
  color: #227065;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
#app .doctor-card .calendar-container .show-more-times .btn-link:hover {
  text-decoration: underline;
}
#app .doctor-card .calendar-container .show-more-times .btn-link svg {
  margin-left: 4px;
}
#app .doctor-card .next-available-slot {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
#app .doctor-card .next-available-slot h3 {
  font-size: 18px;
  color: #252B36;
  font-weight: 500;
  margin-bottom: 10px;
}
#app .doctor-card .next-available-slot .next-date {
  font-size: 20px;
  font-weight: 600;
  color: #227065;
  margin-bottom: 24px;
}
#app .doctor-card .next-available-slot .show-more-slots {
  width: 100%;
}
#app .doctor-card .next-available-slot .show-more-slots .btn-primary {
  background-color: #227065;
  border-color: #227065;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#app .doctor-card .next-available-slot .show-more-slots .btn-primary:hover {
  background-color: #1c5c53;
}
#app .doctor-card .no-available-slots {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
#app .doctor-card .no-available-slots .calendar-icon svg {
  fill: #252B36;
  width: 30px;
  height: auto;
}
#app .doctor-card .no-available-slots h3 {
  font-size: 16px;
  color: #252B36;
  font-weight: 500;
  margin-bottom: 10px;
}
#app .doctor-card .no-available-slots .no-slots-info {
  font-size: 14px;
  color: #737780;
  margin-bottom: 16px;
}
#app .doctor-card .no-available-slots .phone-contact {
  width: 100%;
}
#app .doctor-card .no-available-slots .phone-contact .btn-primary {
  background-color: #227065;
  border-color: #227065;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#app .doctor-card .no-available-slots .phone-contact .btn-primary:hover {
  background-color: #1c5c53;
}
#app .doctor-card .online-info {
  margin-top: 12px;
}
#app .doctor-card .online-info p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  color: #252B36;
}
#app .doctor-card .online-info .small {
  font-size: 14px;
  color: #737780;
}
#app .doctor-card .online-info svg {
  color: #227065;
}
#app .doctor-card .location-dropdown {
  background-color: transparent;
  border: none;
  color: #227065;
  padding: 0;
}
#app .doctor-card .location-dropdown:hover, #app .doctor-card .location-dropdown:focus {
  color: #164942;
  background-color: transparent;
}
#app .doctor-card .location-dropdown::after {
  display: none;
}
@media (max-width: 768px) {
  #app .doctor-card .doctor-card .doctor-avatar {
    width: 80px;
    height: 80px;
  }
  #app .doctor-card .doctor-card .doctor-details .doctor-name {
    font-size: 16px;
  }
  #app .doctor-card .doctor-card .doctor-details .doctor-specialty {
    font-size: 14px;
  }
  #app .doctor-card .doctor-card .doctor-details .doctor-rating .stars svg {
    width: 16px;
    height: 16px;
  }
  #app .doctor-card .doctor-card .next-available-slot, #app .doctor-card .doctor-card .no-available-slots {
    padding: 16px 0;
    margin-top: 24px;
  }
  #app .doctor-card .doctor-card .next-available-slot h3, #app .doctor-card .doctor-card .no-available-slots h3 {
    font-size: 16px;
  }
  #app .doctor-card .doctor-card .next-available-slot .next-date, #app .doctor-card .doctor-card .no-available-slots .next-date {
    font-size: 18px;
  }
}

.appointment-page {
  padding: 0 0 40px 0;
}
.appointment-page .card {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #EAECF0;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  padding: 24px;
  margin-bottom: 24px;
}
.appointment-page .form-title {
  font-size: 24px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 24px;
}
.appointment-page .form-section {
  margin-bottom: 32px;
}
.appointment-page .form-section.hidden {
  display: none;
}
.appointment-page .form-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.appointment-page .form-section .section-header .section-icon {
  width: 36px;
  height: 36px;
  background-color: #227065;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.appointment-page .form-section .section-header .section-icon svg {
  color: #fff;
}
.appointment-page .form-section .section-header .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 0;
}
.appointment-page .form-section .section-title-simple {
  font-size: 16px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 16px;
}
.appointment-page .form-options {
  display: flex;
  gap: 16px;
}
.appointment-page .form-options .option-card {
  flex: 1;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.appointment-page .form-options .option-card input[type=radio] {
  position: absolute;
  opacity: 0;
}
.appointment-page .form-options .option-card .option-content {
  display: flex;
  align-items: center;
}
.appointment-page .form-options .option-card .option-content .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #EAECF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.appointment-page .form-options .option-card .option-content .check-icon svg {
  display: none;
  color: #FFFFFF;
}
.appointment-page .form-options .option-card .option-content span {
  font-size: 14px;
  color: #737780;
}
.appointment-page .form-options .option-card:hover {
  background-color: #F9FAFB;
}
.appointment-page .form-options .option-card.selected {
  border-color: #227065;
  background-color: rgba(34, 112, 101, 0.05);
}
.appointment-page .form-options .option-card.selected .check-icon {
  background-color: #227065;
  border-color: #227065;
  box-shadow: inset 0px 0px 0px 6px #237065;
  background: #ffffff;
}
.appointment-page .form-options .option-card.selected .check-icon svg {
  display: block;
}
.appointment-page .form-options .option-card.selected span {
  color: #252B36;
  font-weight: 500;
}
.appointment-page .form-group {
  margin-bottom: 8px;
}
.appointment-page .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #252B36;
  margin-bottom: 6px;
  display: block;
}
.appointment-page .form-group .form-control {
  height: 46px;
  border-radius: 8px;
  border: 1px solid #EAECF0;
  padding: 0 12px;
  font-size: 14px;
  color: #737780;
}
.appointment-page .form-group .form-control::-moz-placeholder {
  color: #9C9C9C;
}
.appointment-page .form-group .form-control::placeholder {
  color: #9C9C9C;
}
.appointment-page .form-group .form-control:focus {
  border-color: #227065;
  box-shadow: none;
}
.appointment-page .form-group .form-control:hover {
  border-color: #E3E3E4;
}
.appointment-page .form-group textarea.form-control {
  height: auto;
  padding: 12px;
}
.appointment-page .form-check {
  padding-left: 28px;
}
.appointment-page .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -28px;
  margin-top: 3px;
  border: 1px solid #E3E3E4;
}
.appointment-page .form-check .form-check-input:checked {
  background-color: #227065;
  border-color: #227065;
}
.appointment-page .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: #227065;
}
.appointment-page .form-check .form-check-label {
  font-size: 14px;
  color: #737780;
}
.appointment-page .form-check .form-check-label a {
  color: #227065 !important;
  text-decoration-color: #227065 !important;
}
.appointment-page .form-check .form-check-label a:hover {
  text-decoration: underline;
}
.appointment-page .appointment-summary {
  position: sticky;
  top: 20px;
}
.appointment-page .appointment-summary .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.appointment-page .appointment-summary .summary-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 0;
}
.appointment-page .appointment-summary .summary-header .edit-link {
  font-size: 14px;
  color: #227065;
  text-decoration: none;
}
.appointment-page .appointment-summary .summary-header .edit-link:hover {
  text-decoration: underline;
}
.appointment-page .appointment-summary .summary-content .doctor-info {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.appointment-page .appointment-summary .summary-content .doctor-info .doctor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #E5E7EB;
  margin-right: 12px;
}
.appointment-page .appointment-summary .summary-content .doctor-info .doctor-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.appointment-page .appointment-summary .summary-content .doctor-info .doctor-details .doctor-name {
  font-size: 16px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 2px;
}
.appointment-page .appointment-summary .summary-content .doctor-info .doctor-details .doctor-specialty {
  font-size: 14px;
  color: #737780;
  margin-bottom: 0;
}
.appointment-page .appointment-summary .summary-content .summary-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.appointment-page .appointment-summary .summary-content .summary-item .item-icon {
  margin-right: 12px;
  color: #227065;
  flex-shrink: 0;
}
.appointment-page .appointment-summary .summary-content .summary-item .item-content .item-title {
  font-size: 14px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 2px;
}
.appointment-page .appointment-summary .summary-content .summary-item .item-content .item-details {
  font-size: 14px;
  color: #737780;
}
.appointment-page .appointment-summary .summary-content .visit-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid #EAECF0;
  border-bottom: 1px solid #EAECF0;
}
.appointment-page .appointment-summary .summary-content .visit-cost .cost-label {
  font-size: 16px;
  font-weight: 600;
  color: #252B36;
}
.appointment-page .appointment-summary .summary-content .visit-cost .cost-value {
  font-size: 18px;
  font-weight: 700;
}
.appointment-page .appointment-summary .summary-content .visit-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.appointment-page .appointment-summary .summary-content .visit-status .status-label {
  font-size: 14px;
  font-weight: 500;
  color: #252B36;
}
.appointment-page .appointment-summary .summary-content .visit-status.inprogress {
  background: #FDF0E7;
  padding: 8px 12px;
  border-radius: 7px;
}
.appointment-page .appointment-summary .summary-content .visit-status.inprogress .status-badge {
  color: #F59E0B;
}
.appointment-page .appointment-summary .summary-content .visit-status.success {
  background: #E5F5E9;
  padding: 8px 12px;
  border-radius: 7px;
}
.appointment-page .appointment-summary .summary-content .visit-status.success .status-badge {
  color: #2B9C46;
}
.appointment-page .appointment-summary .summary-content .visit-status .status-badge {
  background-color: transparent;
  font-size: 16px;
}
.appointment-page .appointment-summary .summary-content .confirm-button {
  margin-bottom: 32px;
}
.appointment-page .appointment-summary .summary-content .confirm-button .btn-primary {
  background-color: #227065;
  border-color: #D1E3D9;
  color: #fff;
  font-weight: 500;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}
.appointment-page .appointment-summary .summary-content .confirm-button .btn-primary svg {
  margin-left: 8px;
}
.appointment-page .appointment-summary .summary-content .confirm-button .btn-primary:hover {
  background-color: #c1d9cc;
  border-color: #c1d9cc;
}
.appointment-page .appointment-summary .summary-content .confirm-button .confirm-hint {
  font-size: 13px;
  color: #737780;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment-page .appointment-summary .summary-content .confirm-button .confirm-hint svg {
  color: #9C9C9C;
  margin-right: 4px;
}
.appointment-page .appointment-summary .summary-content .powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #9C9C9C;
}
.appointment-page .appointment-summary .summary-content .powered-by svg {
  height: 20px;
}
@media (max-width: 992px) {
  .appointment-page .appointment-summary {
    position: static;
  }
}
@media (max-width: 768px) {
  .appointment-page .form-options {
    flex-direction: column;
  }
  .appointment-page .form-options .option-card {
    width: 100%;
  }
}

/* Style dla strony potwierdzenia rezerwacji */
/* Baza jest już w style.css, dodajemy tylko specyficzne style */
.confirmation-page {
  padding: 40px 0;
}

.confirmation-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #EAECF0;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  padding: 24px;
  margin-bottom: 24px;
}

/* Nagłówek z ikoną sukcesu */
.success-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.success-header .success-icon {
  width: 64px;
  height: 64px;
  background-color: #D1E3D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.success-header .success-icon svg {
  color: #227065;
}
.success-header .confirmation-title {
  font-size: 24px;
  font-weight: 600;
  color: #252B36;
  margin: 0;
}

/* Wiadomość potwierdzająca */
.confirmation-message {
  font-size: 16px;
  color: #737780;
  margin-bottom: 16px;
}
.confirmation-message p {
  margin-bottom: 0;
}

/* Przycisk CTA */
.cta-button .btn-primary {
  background-color: #227065;
  border-color: #227065;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-button .btn-primary svg {
  margin-left: 8px;
}
.cta-button .btn-primary:hover {
  background-color: #c1d9cc;
  border-color: #c1d9cc;
}

/* Sekcja FAQ */
.faq-section {
  margin-top: 40px;
}
.faq-section .faq-title {
  font-size: 20px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 24px;
}
.faq-section .accordion-item {
  border: 1px solid #EAECF0;
  border-radius: 8px !important;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-section .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-section .accordion-header {
  margin: 0;
}
.faq-section .accordion-button {
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #252B36;
  background-color: #F9FAFB;
  box-shadow: unset;
}
.faq-section .accordion-button.collapsed {
  background-color: #F9FAFB;
  color: #227065;
  box-shadow: none;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: #EAECF0;
}
.faq-section .accordion-button::after {
  filter: brightness(0);
  background-size: 12px;
  height: 12px;
  width: 12px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23227065'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-body {
  padding: 16px;
  font-size: 14px;
  color: #737780;
  background-color: #F9FAFB;
}
.faq-section .accordion-body p {
  margin-bottom: 12px;
}
.faq-section .accordion-body ul {
  padding-left: 20px;
}
.faq-section .accordion-body ul li {
  margin-bottom: 8px;
}
.faq-section .accordion-body ul li:last-child {
  margin-bottom: 0;
}

/* Zmodyfikowane style dla sidebara podsumowania */
.appointment-summary {
  position: sticky;
  top: 20px;
}
.appointment-summary .status-badge {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
}
.appointment-summary .status-badge.success {
  background-color: #E6F9F1;
  color: #00875A;
}
.appointment-summary .visit-info {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}
.appointment-summary .visit-info .info-icon {
  margin-right: 12px;
  color: #9C9C9C;
  flex-shrink: 0;
  margin-top: 3px;
}
.appointment-summary .visit-info .info-text {
  font-size: 13px;
  color: #737780;
  line-height: 1.5;
}

/* Responsywność */
@media (max-width: 768px) {
  .success-header {
    flex-direction: column;
    text-align: center;
  }
  .success-header .success-icon {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .cta-button {
    display: flex;
    justify-content: center;
  }
  .cta-button .btn-primary {
    width: 100%;
    max-width: 100%;
  }
}
.modal .calendar-container {
  border-left: 1px solid #EAECF0;
  padding-left: 40px;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .modal .calendar-container {
    border-left: none;
    border-top: 1px solid #EAECF0;
    padding-left: 0;
    padding-top: 24px;
    margin-top: 24px;
  }
}
.modal .calendar-container .calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
}
.modal .calendar-container .calendar-nav .btn-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #EAECF0;
  border-radius: 50%;
  color: #252B36;
  position: absolute;
}
.modal .calendar-container .calendar-nav .btn-icon svg {
  width: 13px;
  height: auto;
}
.modal .calendar-container .calendar-nav .btn-icon.calendar-nav-prev {
  left: -28px;
}
.modal .calendar-container .calendar-nav .btn-icon.calendar-nav-next {
  right: -35px;
}
.modal .calendar-container .calendar-nav .btn-icon:hover {
  color: #227065;
  border-color: #227065;
}
.modal .calendar-container .calendar-nav .days-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  justify-content: space-between;
  gap: 5px;
}
.modal .calendar-container .calendar-nav .days-scroll::-webkit-scrollbar {
  display: none;
}
.modal .calendar-container .calendar-nav .days-scroll .day-column {
  text-align: center;
  cursor: pointer;
  min-width: 60px;
}
.modal .calendar-container .calendar-nav .days-scroll .day-column .day-name {
  font-size: 14px;
  color: #737780;
  margin-bottom: 4px;
}
.modal .calendar-container .calendar-nav .days-scroll .day-column .day-date {
  font-size: 14px;
  color: #252B36;
  font-weight: 500;
}
.modal .calendar-container .calendar-nav .days-scroll .day-column.active .day-name, .modal .calendar-container .calendar-nav .days-scroll .day-column.active .day-date {
  color: #227065;
  font-weight: 600;
}
.modal .calendar-container .time-slots {
  display: flex;
  gap: 16px;
}
.modal .calendar-container .time-slots .time-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal .calendar-container .time-slots .time-column .time-slot {
  height: 29px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
.modal .calendar-container .time-slots .time-column .time-slot.available {
  background-color: #EFF9F0;
  color: #227065;
}
.modal .calendar-container .time-slots .time-column .time-slot.available:hover {
  background-color: #d7dae0;
}
.modal .calendar-container .time-slots .time-column .time-slot.disabled {
  background-color: transparent;
  color: #9C9C9C;
  cursor: default;
}
.modal .calendar-container .show-more-times .btn-link {
  color: #227065;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.modal .calendar-container .show-more-times .btn-link:hover {
  text-decoration: underline;
}
.modal .calendar-container .show-more-times .btn-link svg {
  margin-left: 4px;
}

/* Calendar Styles - Add to your style.css file */
.calendar-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-nav .btn-icon {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.calendar-nav .btn-icon:hover {
  background-color: #f8f9fa;
}

.calendar-nav .btn-icon:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.days-scroll {
  flex: 1;
  overflow: hidden;
  margin: 0 10px;
}

.week-container {
  display: flex;
  width: 100%;
}

.day-column {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 8px;
}

.day-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.day-date {
  font-size: 0.85rem;
  color: #6c757d;
}

.time-slots {
  position: relative;
  overflow: hidden;
}

.week-slots {
  display: flex;
  width: 100%;
}

.time-column {
  flex: 1;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 5px;
}

.time-column.active {
  display: flex;
}

.time-slot {
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.time-slot.available {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot.available:hover {
  background-color: #e9ecef;
  border-color: #ced4da;
}

.time-slot.active,
.time-slot.selected {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.time-slot.disabled {
  background-color: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
}

.calendar-pagination {
  margin-top: 10px;
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dee2e6;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pagination-dot.active {
  background-color: #0d6efd;
}

/* Styles for the simplified calendar (fallback) */
.simplified-calendar {
  margin-top: 15px;
}

.simplified-calendar .days-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.simplified-calendar .day-card {
  flex: 0 0 auto;
  width: 80px;
  padding: 10px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
}

.simplified-calendar .day-card.active {
  background-color: #f0f7ff;
  border-color: #0d6efd;
}

.simplified-calendar .day-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.simplified-calendar .day-date {
  font-size: 0.85rem;
  color: #6c757d;
}

.simplified-calendar .times-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.simplified-calendar .time-slot {
  text-align: center;
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
}

.simplified-calendar .time-slot:hover {
  background-color: #e9ecef;
}

.simplified-calendar .time-slot.selected {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

/* Modal specific calendar adjustments */
#editAppointmentModal .calendar-container {
  max-height: 400px;
  overflow-y: auto;
}

#editAppointmentModal .time-column {
  max-height: 200px;
  overflow-y: auto;
}

/* Exact Calendar CSS to Match First Screenshot */
#editReservationModal .modal-header {
  background-color: #227065 !important;
  color: white;
}

#editReservationModal .doctor-name-display {
  font-size: 16px;
  opacity: 0.9;
}

/* Service dropdown styling */
#editReservationModal .service-dropdown-container {
  position: relative;
}

#editReservationModal .service-dropdown-container select {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 15px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-size: 16px;
}

#editReservationModal .service-dropdown-container::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}

/* Visit location styles */
#editReservationModal .visit-option {
  margin-bottom: 15px;
}

#editReservationModal .form-check {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#editReservationModal .form-check-input {
  width: 22px;
  height: 22px;
  margin-top: 0;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}

#editReservationModal .form-check-input:checked {
  border-color: #237065;
  background: #237065;
  box-shadow: inset 0px 0px 0px 5px #ffffff;
}

/* Calendar vertical layout - exact match to screenshot */
#editReservationModal .calendar-vertical-layout {
  background-color: #fff;
}

#editReservationModal .visit-type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#editReservationModal .visit-type-options input {
  margin: 0;
}

/* Calendar navigation buttons */
#editReservationModal .btn-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f7f0;
  border: none;
  border-radius: 50%;
  color: #3c7a6d;
  font-weight: bold;
  font-size: 18px;
  padding: 0;
  line-height: 1;
}

#editReservationModal .btn-nav:hover {
  background-color: #e6f2ec;
}

#editReservationModal .btn-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#editReservationModal .nav-icon {
  line-height: 1;
}

/* Calendar days row */
#editReservationModal .calendar-days-container {
  overflow-x: hidden;
}

#editReservationModal .calendar-days-row {
  text-align: center;
}

#editReservationModal .calendar-day-column {
  flex: 1;
  padding: 10px 5px;
  text-align: center;
  cursor: pointer;
}

#editReservationModal .calendar-day-column.active {
  background-color: #f0f7f0;
  border-radius: 8px;
}

#editReservationModal .day-name {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

#editReservationModal .day-date {
  display: block;
  font-size: 16px;
  color: #6c757d;
}

/* Calendar slots grid */
#editReservationModal .calendar-slots-container {
  margin-top: 20px;
}

#editReservationModal .calendar-slots-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

#editReservationModal .slot-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Time slot styling */
#editReservationModal .time-slot {
  background-color: #f0f7f0;
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: center;
  padding: 12px 5px;
  cursor: pointer;
  font-size: 16px;
  color: #3c7a6d;
  transition: all 0.15s ease;
}

#editReservationModal .time-slot:hover {
  border-color: #3c7a6d;
  background-color: #e6f2ec;
}

#editReservationModal .time-slot.selected {
  background-color: #e6f2ec;
  border-color: #3c7a6d;
  font-weight: 500;
}

#editReservationModal .time-slot.disabled {
  background-color: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
}

/* Pagination dots */
#editReservationModal .pagination-indicator {
  margin-top: 15px;
}

#editReservationModal .pagination-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}

#editReservationModal .pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ced4da;
  cursor: pointer;
}

#editReservationModal .pagination-dot.active {
  background-color: #3c7a6d;
}

/* Modal footer */
#editReservationModal .modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 15px;
}

#editReservationModal #cancelReservationChanges {
  color: #6c757d;
  border-color: #6c757d;
}

#editReservationModal #saveReservationChanges {
  background-color: #227065;
  border-color: #227065;
}

#editReservationModal .modal-footer button {
  width: 100%;
  padding: 15px 15px;
}

#editReservationModal .modal-body {
  margin-bottom: 0;
  padding-bottom: 0;
}

#editReservationModal .modal-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  #editReservationModal .calendar-slots-grid {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  #editReservationModal .slot-column {
    min-width: 80px;
  }
}
.single-lekarz .calendar-container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .single-lekarz .calendar-container {
    border-left: none;
    border-top: 1px solid #EAECF0;
    padding-left: 0;
    padding-top: 24px;
    margin-top: 24px;
  }
}
.single-lekarz .calendar-container .calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
}
.single-lekarz .calendar-container .calendar-nav .btn-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #EAECF0;
  border-radius: 50%;
  color: #252B36;
  position: absolute;
}
.single-lekarz .calendar-container .calendar-nav .btn-icon svg {
  width: 13px;
  height: auto;
}
.single-lekarz .calendar-container .calendar-nav .btn-icon.calendar-nav-prev {
  left: -21px;
}
.single-lekarz .calendar-container .calendar-nav .btn-icon.calendar-nav-next {
  right: -21px;
}
.single-lekarz .calendar-container .calendar-nav .btn-icon:hover {
  color: #227065;
  border-color: #227065;
}
.single-lekarz .calendar-container .calendar-nav .days-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  justify-content: space-between;
  gap: 5px;
}
.single-lekarz .calendar-container .calendar-nav .days-scroll::-webkit-scrollbar {
  display: none;
}
.single-lekarz .calendar-container .calendar-nav .days-scroll .day-column {
  text-align: center;
  cursor: pointer;
  min-width: 60px;
  padding: 0;
}
.single-lekarz .calendar-container .calendar-nav .days-scroll .day-column .day-name {
  font-size: 14px;
  color: #737780;
  margin-bottom: 4px;
}
.single-lekarz .calendar-container .calendar-nav .days-scroll .day-column .day-date {
  font-size: 14px;
  color: #252B36;
  font-weight: 500;
}
.single-lekarz .calendar-container .calendar-nav .days-scroll .day-column.active .day-name, .single-lekarz .calendar-container .calendar-nav .days-scroll .day-column.active .day-date {
  color: #227065;
  font-weight: 600;
}
.single-lekarz .calendar-container .time-slots {
  display: flex;
  gap: 16px;
}
.single-lekarz .calendar-container .time-slots .time-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.single-lekarz .calendar-container .time-slots .time-column .time-slot {
  height: 29px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
.single-lekarz .calendar-container .time-slots .time-column .time-slot.available {
  background-color: #EFF9F0;
  color: #227065;
}
.single-lekarz .calendar-container .time-slots .time-column .time-slot.available:hover {
  background-color: #d7dae0;
}
.single-lekarz .calendar-container .time-slots .time-column .time-slot.disabled {
  background-color: transparent;
  color: #9C9C9C;
  cursor: default;
}
.single-lekarz .calendar-container .show-more-times .btn-link {
  color: #227065;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.single-lekarz .calendar-container .show-more-times .btn-link:hover {
  text-decoration: underline;
}
.single-lekarz .calendar-container .show-more-times .btn-link svg {
  margin-left: 4px;
}

.calendar-pagination .pagination-dot {
  width: 10px;
  height: 10px;
  background: #d6d6d6;
  display: block;
  border-radius: 100px;
  cursor: pointer;
}

.pagination-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 30px;
}

.calendar-pagination .pagination-dot.active {
  background: #237065;
}

.show-more-times {
  display: none !important;
}

.doctor-services-filter .btn.active {
  background: #EFF9F0;
  border-color: #227065;
  color: #227065;
}

.doctor-services-filter .btn.active svg path {
  stroke: #227065;
}

.doctor-services-filter .btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 19px;
}

.doctor-services-filter .btn:hover {
  background: #237065;
  color: #fff !important;
}

.doctor-services-filter .btn:hover svg path {
  stroke: #fff;
}

.diseases-treated ul li {
  position: relative;
  color: #252B36;
  font-size: 14px;
}

.diseases-treated.doctor-card.services-section ul li:before {
  content: "";
  background: url(/icon-list.svg);
  width: 16px;
  height: 16px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: -22px;
}

.diseases-treated ul {
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9px;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .diseases-treated ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .diseases-treated ul {
    grid-template-columns: 1fr;
  }
}

.stepper {
  display: flex;
  justify-content: space-between;
  max-width: 750px;
  margin: 0 auto 60px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .stepper {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    line-height: 1.2;
  }
}

.stepper-progress {
  background: linear-gradient(45deg, #3c7a6d 50%, #eaecf0 50%);
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  transform: translate(0%, -50%);
  z-index: -1;
  width: calc(100% - 120px) !important;
  left: 50px;
}
.stepper-progress.full {
  background: #3c7a6d;
}

.stepper-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stepper-step .stepper-bullet {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 200px;
  border: 2px solid #EAECF0;
  font-weight: 600;
  color: #E3E3E4;
}

.stepper-label {
  text-align: center;
  color: #737780;
  font-size: 14px;
}
@media (max-width: 767px) {
  .stepper-label {
    font-size: 12px;
  }
}

.stepper-step.active .stepper-bullet {
  background: #EFF9F0;
  color: #3d7b6e;
  border-color: #3d7b6e;
}

.stepper-step.active .stepper-label {
  color: #3c7a6d;
}

.stepper-step.completed .stepper-label {
  color: #3c7a6d;
  font-weight: 600;
}

.stepper-step.completed .stepper-bullet {
  background: #eff9f0;
  font-size: 0;
  border-color: #3c7a6d;
}

.stepper-step.completed .stepper-bullet:after {
  content: "✔";
  font-size: 20px;
  color: #3c7a6d;
}

.mobile-filters-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-filters-panel .panel-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(100vw);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-filters-panel.show {
  display: block;
  opacity: 1;
}
.mobile-filters-panel.show .panel-wrapper {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .mobile-filters-panel, .mobile-filters-panel .panel-wrapper {
    width: 100vw;
    max-width: 100vw;
  }
}
button.btn-clear-desktop {
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 12px;
  text-decoration: underline;
  border-top: 1px solid #eaecf0;
  padding-top: 12px;
}
@media (max-width: 768px) {
  button.btn-clear-desktop {
    display: none;
  }
}

button.btn-clear-desktop svg {
  width: 13px;
}

@media (max-width: 768px) {
  .filter-section-flex {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .filter-section-flex .visit-option .form-check {
    border: 1px solid #EAECF0;
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
  }
  .filter-section-flex .visit-option .form-check:hover {
    background-color: #F9FAFB;
  }
  .filter-section-flex .visit-option .form-check .form-check-input {
    margin-top: 0;
    margin-left: 0;
  }
  .filter-section-flex .visit-option .form-check .form-check-input:checked {
    background-color: #227065;
    border-color: #227065;
  }
  .filter-section-flex .visit-option .form-check .form-check-input:focus {
    box-shadow: none;
  }
  .filter-section-flex .visit-option .form-check span {
    font-size: 14px;
    color: #737780;
  }
  .filter-section-flex .visit-option.selected .form-check {
    border-color: #227065;
    background-color: rgba(34, 112, 101, 0.05);
  }
  .filter-section-flex .form-check {
    padding-left: 28px;
  }
  .filter-section-flex .form-check .form-check-input {
    width: 18px;
    height: 18px;
    margin-left: -28px;
    margin-top: 3px;
    border: 1px solid #E3E3E4;
  }
  .filter-section-flex .form-check .form-check-input:checked {
    background-color: #227065;
    border-color: #227065;
  }
  .filter-section-flex .form-check .form-check-input:focus {
    box-shadow: none;
    border-color: #227065;
  }
  .filter-section-flex .form-check .form-check-label {
    font-size: 14px;
    color: #737780;
  }
  .filter-section-flex .form-check .form-check-label a {
    text-decoration: none;
  }
  .filter-section-flex .form-check .form-check-label a:hover {
    text-decoration: underline;
  }
}
.mobile-next-appointment-box span.time-pill:nth-child(n+5) {
  display: none;
}
.mobile-next-appointment-box .time-pill {
  background-color: #EFF9F0;
  color: #227065;
  padding: 4px 7px;
  font-size: 12px;
}
.mobile-next-appointment-box .showCalendarBtn {
  background: #227065;
  font-size: 12px;
  border-color: #227065;
  padding: 4px;
}
.mobile-next-appointment-box .mobile-next-appointment-box-times {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: flex-start;
}

#calendar-modal .modal-content {
  height: 100vh;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
#calendar-modal .modal-dialog {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
#calendar-modal .calendar-container {
  display: block !important;
  margin-top: 0;
  padding: 0;
  border: 0;
}
#calendar-modal .modal-header {
  background: #227065;
  color: #fff;
  border-radius: 0 !important;
}
#calendar-modal .modal-header .modal-title {
  border-left: 1px solid #fff;
  padding-left: 11px;
}
#calendar-modal button.btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

span.filter-badge.hidden {
  opacity: 0;
}

span.filter-badge {
  width: 26px;
  height: 26px;
  display: flex;
  border-radius: 4px;
  background: #EFF9F0;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.5s;
}

#app .app-sidebar .app-filters .filter-section h5 {
  display: flex;
  align-items: center;
  gap: 10px;
}

img.powered-by {
  width: 150px;
  margin: 15px auto 20px;
  display: block;
}

.show-details-btn {
  color: #737780;
  text-decoration: none;
  font-size: 14px;
}
.show-details-btn:hover {
  color: #00875A;
}
@media (max-width: 768px) {
  .show-details-btn {
    font-size: 12px;
  }
}

div#mobileFilters .panel-header {
  background: #227065;
  color: #fff;
}

div#mobileFilters .panel-header h3, div#mobileFilters .panel-header button {
  color: #fff;
  font-weight: 500;
}

div#single-mobile-availability .showCalendarBtn {
  background: #227065;
  color: #fff;
  text-decoration: none;
  padding: 4px 10px !important;
}

div#single-mobile-availability button {
  font-size: 12px;
  padding: 4px 7px !important;
}

div#single-mobile-availability .showCalendarBtn svg {
  transform: rotate(-90deg);
  width: 10px;
}

div#single-mobile-availability .time-slot-mobile {
  background: #EFF9F0;
  border: 0;
}
div#single-mobile-availability .time-slot-mobile:hover {
  color: #fff;
  background: #227065;
}

@media (max-width: 991px) {
  div#registration-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    height: 100vh;
    overflow: scroll;
    z-index: 9999999;
    background: #fff;
  }
  div#registration-panel .registration-box {
    border-radius: 0;
    background: #F9FAFB;
    border: 0;
  }
  div#registration-panel .registration-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  div#registration-panel .registration-header button {
    opacity: 1;
    filter: brightness(0) invert(1);
  }
  div#registration-panel .registration-header h2 {
    font-size: 20px;
  }
  div#registration-panel .registration-header p {
    font-size: 14px;
  }
  div#registration-panel .registration-body {
    padding: 21px;
    margin: 20px 10px;
    width: calc(100% - 20px);
    border: 1px solid #EAECF0;
    border-radius: 12px;
    background: #fff;
  }
}

footer {
  background: #0C4A3D;
  padding: 30px 0 20px;
  color: #E6E6E6;
  font-size: 12px;
}

footer span {
  font-size: 16px;
  display: block;
  margin-bottom: 12px;
}

footer p, footer p a {
  display: flex;
  gap: 10px;
  font-weight: 400;
}

footer p a {
  text-decoration: none;
  color: #E6E6E6;
}

footer .row-bottom {
  border-top: 1px solid #E6E6E6;
}

footer p svg {
  width: 20px;
  height: auto;
}

footer span ~ * {
  font-size: 12px;
}

@media (max-width: 991px) {
  #editReservationModal .slot-column {
    min-width: auto !important;
  }
  div#editReservationModal > div {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
  }
  div#editReservationModal > div .modal-header {
    border-radius: 0 !important;
    border: 0 !important;
  }
  div#editReservationModal > div .modal-content {
    border: 0;
  }
  #editReservationModal .visit-type-options .visit-option {
    padding: 0;
  }
  #editReservationModal div#editLocationSelectContainer {
    margin: 0;
    padding: 0;
    background: transparent;
  }
}
div#editReservationModal {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

#editReservationModal .calendar-vertical-layout * {
  font-size: 14px !important;
}

#editReservationModal .time-slot {
  padding: 6px !important;
}

#editReservationModal .visit-option {
  padding: 0;
  background: transparent;
}

@media (max-width: 767px) {
  #div#calendar-modal .calendar-nav {
    flex-direction: column;
    position: relative;
    padding-top: 50px;
  }
  #editReservationModal .calendar-header {
    flex-direction: column;
    position: relative;
    padding-top: 50px;
  }
  div#calendar-modal .calendar-header > div,
  #editReservationModal .calendar-header > div {
    width: 100%;
  }
  div#calendar-modal .calendar-header > div > div,
  #editReservationModal .calendar-header > div > div {
    margin: 0 !important;
  }
  div#calendar-modal .calendar-nav button,
  #editReservationModal .calendar-header button {
    position: absolute;
    left: 0;
    top: 0;
  }
  div#calendar-modal .calendar-nav .calendar-nav-next,
  #editReservationModal .calendar-header .calendar-nav-next {
    right: 0;
    left: unset;
  }
  div#calendar-modal .modal-body .calendar-nav {
    padding: 25px 0;
  }
  div#editReservationModal .modal-body {
    padding: 20px 8px;
  }
}
div#editReservationModal > div {
  max-width: 548px !important;
}

#editReservationModal .calendar-days-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#editReservationModal .calendar-slots-grid {
  max-width: 348px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* DODAJ DO PLIKU CSS */
/* Mobile Sidebar Modal Styles */
@media (max-width: 991.98px) {
  .app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F9FAFB;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }
  .app-sidebar.mobile-open {
    transform: translateX(0);
  }
  /* Mobile Header */
  .mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 12px;
    background: #227065;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .mobile-sidebar-header h4 {
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
  }
  .mobile-sidebar-close {
    background: none;
    border: none;
    padding: 0.5rem;
    color: #fff;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease;
  }
  .mobile-sidebar-close:hover {
    background-color: #f8f9fa;
    color: #495057;
  }
  /* Sidebar Content */
  .sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 0;
    max-width: calc(100% - 30px);
    padding: 0;
    margin: 20px auto;
  }
  .sidebar-content .app-search {
    display: none;
  }
  /* Mobile Footer */
  .mobile-sidebar-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    background: white;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.75rem;
    position: sticky;
    bottom: 0;
    z-index: 10;
  }
  .btn-clear-mobile {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    background: white;
    color: #6c757d;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.15s ease;
    font-size: 12px;
  }
  .btn-clear-mobile svg {
    width: 12px;
    height: auto;
  }
  .btn-clear-mobile:hover {
    border-color: #adb5bd;
    color: #495057;
  }
  .btn-apply-mobile {
    flex: 2;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    background-color: #227065;
    color: #fff;
    font-size: 12px;
  }
  .btn-apply-mobile svg {
    width: 12px;
    height: auto;
  }
  .btn-apply-mobile:hover {
    background-color: #00DF81;
  }
  /* Overlay */
  .mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  /* Adjustments for filters inside mobile sidebar */
  .app-sidebar .app-search {
    margin-bottom: 1.5rem;
  }
  .app-sidebar .filter-section {
    margin-bottom: 2rem;
  }
  .app-sidebar .filter-section:last-child {
    margin-bottom: 1rem;
  }
  /* Visit options styling for mobile */
  .visit-option {
    margin-bottom: 0.75rem;
  }
  .visit-option label {
    border: 1px solid #dee2e6;
    transition: all 0.15s ease;
    cursor: pointer;
  }
  .visit-option label:hover {
    border-color: #adb5bd;
  }
  /* Price slider adjustments */
  .price-slider {
    margin-top: 1rem;
  }
  /* Switch styling */
  .form-check-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
  }
  .filter-badge.hidden {
    display: none !important;
  }
}
/* Desktop styles remain unchanged */
@media (min-width: 992px) {
  .mobile-sidebar-header,
  .mobile-sidebar-footer {
    display: none !important;
  }
  .app-sidebar {
    position: static;
    transform: none;
    height: auto;
    background: transparent;
  }
  .sidebar-content {
    padding: 0;
  }
}
div#location-select-wrapper,
.location-select.mb-2 {
  display: none !important;
}

div#editLocationSelectContainer {
  display: none !important;
}/*# sourceMappingURL=style.css.map */