* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

.main-container {
  height: 100vh;
  width: 100%;
}
.main-container .mapContainer {
  height: 100%;
  width: 100%;
}
.main-container .mapContainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.mainWrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100vh;
}
.mainWrapper .sideNavigation {
  height: 100%;
  width: 6rem;
  padding: 3rem 0.5rem;
  background: #F7F7F7;
  border-right: 1.2px solid #dedede;
}
.mainWrapper .sideNavigation .sideWrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.mainWrapper .sideNavigation .sideWrapper .bottomNavigationItems {
  display: flex;
  justify-content: center;
}
.mainWrapper .sideNavigation .sideWrapper .bottomNavigationItems .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mainWrapper .sideNavigation .sideWrapper .bottomNavigationItems .wrapper a {
  height: fit-content;
  font-size: 0.8rem;
  color: hsla(0, 0%, 10%, 0.8);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 0.3rem 1rem;
  align-items: center;
  gap: 0.5rem;
}
.mainWrapper .sideNavigation .sideWrapper .bottomNavigationItems .wrapper a span {
  height: 1rem;
  width: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainWrapper .sideNavigation .expandNavigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 1.5rem;
  margin: auto;
}

.searchMainFilters {
  width: 100%;
  height: 4rem;
  padding: 2.5rem 0.5rem;
  left: 2rem;
}
.searchMainFilters .wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.searchMainFilters .wrapper .searchWrapper {
  display: flex;
  gap: 0.5rem;
  position: relative;
}
.searchMainFilters .wrapper .searchWrapper input {
  height: 2.5rem;
  width: 18rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-radius: 20rem;
  outline: none;
  border: 1.2px solid #dedede;
}
.searchMainFilters .wrapper .searchWrapper .searchBtn {
  height: 2.5rem;
  width: fit-content;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  background-color: #FFAC12;
  color: #fff;
  text-decoration: none;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20rem;
}
.searchMainFilters .wrapper .searchWrapper .searchBtn span {
  height: 1.2rem;
  width: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

::placeholder {
  font-size: 0.8rem;
  color: #c9c9c9;
}

.RelativeFilters {
  display: flex;
  gap: 1rem;
}
.RelativeFilters a {
  display: flex;
  font-size: 0.7rem;
  gap: 0.5rem;
  background: #f7f7f7;
  border: 1.2px solid #dedede;
  height: 1.8rem;
  width: fit-content;
  padding: 0 0.5rem;
  align-items: center;
  flex-direction: row-reverse;
  color: hsla(0, 0%, 10%, 0.8);
  justify-content: center;
  border-radius: 10rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.RelativeFilters a:hover {
  background: #fff;
  border-color: #FFAC12;
  color: #FFAC12;
  transform: translateY(-1px);
}
.RelativeFilters a.active {
  background: #FFAC12;
  border-color: #FFAC12;
  color: #fff;
  font-weight: 600;
}
.RelativeFilters a.active:hover {
  background: #ff9900;
  border-color: #ff9900;
  color: #fff;
}

.InputIcon {
  position: absolute;
  left: 16rem;
  align-items: center;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
}

.uk-offcanvas-bar {
  width: 18rem;
  background: #f7f7f7 !important;
  color: #1a1a1a;
  border-right: 1.2px solid #dedede;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 0 !important;
}
.uk-offcanvas-bar::-webkit-scrollbar {
  display: none;
}

.uk-subnav {
  display: flex;
  position: relative;
  overflow-x: hidden;
  flex-wrap: unset !important;
  align-items: center;
  padding: 0;
  gap: 0;
  border-bottom: 2px solid #e5e5e5;
  list-style: none;
  margin-top: 1rem !important;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.uk-offcanvas-bar .uk-subnav-pill > .uk-active > a {
  text-transform: none !important;
}

.uk-subnav > * > :first-child {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  color: #666 !important;
  border-bottom: 3px solid transparent;
  font-size: 0.75rem;
  font-weight: 600 !important;
  text-transform: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color, background-color, border-color, transform, box-shadow;
  padding: 1rem 1.25rem;
  text-decoration: none;
  background: transparent;
  border-radius: 8px 8px 0 0;
  position: relative;
  outline: none;
}
.uk-subnav > * > :first-child:hover {
  color: #FFAC12 !important;
  background: rgba(255, 172, 18, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 172, 18, 0.15);
}
.uk-subnav > * > :first-child:focus {
  color: #FFAC12 !important;
  background: rgba(255, 172, 18, 0.12);
  outline: 2px solid #FFAC12;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 172, 18, 0.2);
}
.uk-subnav > * > :first-child:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.uk-subnav > * {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
}
.uk-subnav > *:first-child {
  margin-left: 0;
}
.uk-subnav > * span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  width: 1rem;
}
.uk-subnav > * span img {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(30%);
}
.uk-subnav > *:hover span img {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
}
.uk-subnav > *.uk-active span img {
  opacity: 1;
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

.uk-offcanvas-bar .uk-close {
  color: rgba(26, 26, 26, 0.831372549);
}

.uk-offcanvas-bar .uk-subnav-pill > .uk-active > a {
  color: #FFAC12 !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  background-color: #fff !important;
  border-bottom: 3px solid #FFAC12 !important;
  box-shadow: 0 -4px 16px rgba(255, 172, 18, 0.25);
  transform: translateY(-2px);
}
.uk-offcanvas-bar .uk-subnav-pill > .uk-active > a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #FFAC12, #ff9900);
  border-radius: 3px 3px 0 0;
  transition: all 0.3s ease;
  animation: tabSlide 0.4s ease-out;
}

@keyframes tabSlide {
  0% {
    left: 50%;
    right: 50%;
    opacity: 0;
  }
  100% {
    left: 10%;
    right: 10%;
    opacity: 1;
  }
}
.uk-offcanvas-bar .uk-checkbox:checked {
  background: #FFAC12 !important;
  color: #fff !important;
  border: 1.2px solid #FFAC12 !important;
}

.uk-checkbox {
  border: 1.2px solid #FFAC12 !important;
}

.filtersContainer {
  width: 15rem;
  margin-left: 0;
  padding: 1rem;
}
.filtersContainer .heading {
  font-size: 0.8rem;
  margin: 0;
  padding-bottom: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.filtersContainer label {
  font-size: 0.8rem;
  transition: color 0.2s ease;
}
.filtersContainer label:hover {
  color: #FFAC12;
}
.filtersContainer input[type=search],
.filtersContainer input[type=number],
.filtersContainer input[type=text],
.filtersContainer select {
  height: 2.5rem;
  width: 100%;
  outline: none;
  border: 1.2px solid #dedede;
  padding: 0 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  transition: border-color 0.2s ease;
  background: #fff;
}
.filtersContainer input[type=search]:focus,
.filtersContainer input[type=number]:focus,
.filtersContainer input[type=text]:focus,
.filtersContainer select:focus {
  border-color: #FFAC12;
  box-shadow: 0 0 0 3px rgba(255, 172, 18, 0.1);
}
.filtersContainer input[type=search]::placeholder,
.filtersContainer input[type=number]::placeholder,
.filtersContainer input[type=text]::placeholder,
.filtersContainer select::placeholder {
  color: #c9c9c9;
  font-size: 0.75rem;
}
.filtersContainer .filtersWrapper > div {
  margin-bottom: 1.5rem;
}
.filtersContainer .filtersWrapper > div:last-child {
  margin-bottom: 0;
}
.filtersContainer .styleContainer .selectors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filtersContainer .styleContainer .selectors .selectorGroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.filtersContainer .styleContainer .selectors .selectorGroup .selectorLabel {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.filtersContainer .styleContainer .selectors .selectorGroup select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 3rem;
}
.filtersContainer .typeOfPlace .selectors select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 3rem;
}
.filtersContainer .buttonPrimary {
  width: 100%;
  margin-top: 2rem;
  background: linear-gradient(135deg, #FFAC12, #ff9900);
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
  letter-spacing: 0.02em;
}
.filtersContainer .buttonPrimary:hover {
  background: linear-gradient(135deg, #ff9900, #e6870f);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 172, 18, 0.3);
}
.filtersContainer .buttonPrimary:active {
  transform: translateY(0);
}
.filtersContainer .buttonPrimary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 172, 18, 0.2);
}

.PlacesWrapper, .featuresWrapper, .styleWrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.PlacesWrapper div, .featuresWrapper div, .styleWrapper div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.PlacesWrapper label, .featuresWrapper label, .styleWrapper label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.9);
  padding: 0.25rem 0;
  transition: all 0.2s ease;
}
.PlacesWrapper label:hover, .featuresWrapper label:hover, .styleWrapper label:hover {
  color: #FFAC12;
}
.PlacesWrapper label input[type=checkbox], .featuresWrapper label input[type=checkbox], .styleWrapper label input[type=checkbox] {
  width: auto !important;
  height: auto !important;
  margin-right: 0.25rem;
}
.PlacesWrapper label input[type=checkbox]:focus, .featuresWrapper label input[type=checkbox]:focus, .styleWrapper label input[type=checkbox]:focus {
  box-shadow: 0 0 0 2px rgba(255, 172, 18, 0.2);
}

.minMaxRange {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.minMaxRange p {
  margin: 0;
  font-size: 0.8rem;
}

.filtersWrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.locationInput {
  display: flex;
  align-items: center;
  width: 100%;
}
.locationInput span {
  display: none;
}

.inputRangeInputs {
  width: 100%;
  display: flex;
  gap: 0.75rem;
}
.inputRangeInputs input {
  flex: 1;
}

.uk-switcher {
  margin-top: 0 !important;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 0 !important;
  min-height: 400px;
  transition: all 0.3s ease;
}
.uk-switcher > li {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.uk-switcher > li.uk-active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.savedContainer, .recentContainer {
  display: block;
  width: 100%;
  padding: 1rem;
}
.savedContainer .heading, .recentContainer .heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.savedContainer .subheading, .recentContainer .subheading {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.savedWrapper, .recentWrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: transparent;
  padding: 0;
}

.savedItems {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.savedItem {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  margin-bottom: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.savedItem:hover {
  background: #f5f5f5;
  border-color: #ddd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.savedItem .savedItemImage {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e5e5;
  flex-shrink: 0;
}
.savedItem .savedItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.savedItem:hover .savedItemImage img {
  transform: scale(1.05);
}
.savedItem .savedItemDetails {
  flex: 1;
  min-width: 0;
}
.savedItem .savedItemDetails h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}
.savedItem .savedItemDetails .location {
  font-size: 0.75rem;
  color: #666;
  margin: 0 0 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.savedItem .savedItemDetails .price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFAC12;
  margin: 0;
}
.savedItem .savedItemActions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.savedItem .savedItemActions button {
  padding: 0.375rem 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.savedItem .savedItemActions button.removeBtn {
  background: #ff4757;
  color: white;
  outline: none;
}
.savedItem .savedItemActions button.removeBtn:hover {
  background: #ff3838;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}
.savedItem .savedItemActions button.removeBtn:focus {
  outline: 2px solid #ff4757;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.2);
}
.savedItem .savedItemActions button.viewBtn {
  background: #FFAC12;
  color: white;
  outline: none;
}
.savedItem .savedItemActions button.viewBtn:hover {
  background: #ff9900;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 172, 18, 0.3);
}
.savedItem .savedItemActions button.viewBtn:focus {
  outline: 2px solid #FFAC12;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 172, 18, 0.2);
}

.savedFilters .heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
}

.savedSearches {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.savedSearch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  margin-bottom: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.savedSearch:hover {
  background: #f3f3f3;
  border-color: #ddd;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.savedSearch .searchName {
  font-size: 0.8rem;
  color: #1a1a1a;
  font-weight: 500;
}
.savedSearch .applySearch {
  padding: 0.375rem 0.75rem;
  background: #FFAC12;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.savedSearch .applySearch:hover {
  background: #ff9900;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 172, 18, 0.3);
}

.recentItems {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recentSection .sectionHeading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
}

.recentItem {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  border: 1px solid #e8e8e8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.recentItem:hover {
  background: #f5f5f5;
  border-color: #ddd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.recentItem .recentItemIcon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFAC12, #ff9900);
  border-radius: 12px;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.recentItem:hover .recentItemIcon {
  transform: rotate(5deg) scale(1.05);
}
.recentItem .recentItemDetails {
  flex: 1;
  min-width: 0;
}
.recentItem .recentItemDetails .itemName {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}
.recentItem .recentItemDetails .itemLocation {
  font-size: 0.75rem;
  color: #666;
  margin: 0 0 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.recentItem .recentItemDetails .itemTime {
  font-size: 0.7rem;
  color: #999;
  margin: 0;
  font-style: italic;
}

.recentSearch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fafafa;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  border: 1px solid #e8e8e8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.recentSearch:hover {
  background: #f5f5f5;
  border-color: #ddd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.recentSearch .searchQuery {
  flex: 1;
  min-width: 0;
}
.recentSearch .searchQuery .queryText {
  display: block;
  font-size: 0.85rem;
  color: #1a1a1a;
  margin-bottom: 0.375rem;
  font-weight: 500;
  line-height: 1.3;
}
.recentSearch .searchQuery .queryTime {
  font-size: 0.7rem;
  color: #999;
  font-style: italic;
}
.recentSearch .repeatSearch {
  padding: 0.5rem 1rem;
  background: #FFAC12;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.recentSearch .repeatSearch:hover {
  background: #ff9900;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 172, 18, 0.3);
}

.clearRecent {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e8e8;
}
.clearRecent .clearBtn {
  padding: 0.75rem 1.5rem;
  background: #ff4757;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clearRecent .clearBtn:hover {
  background: #ff3838;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.emptyState {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #999;
  background: #fafafa;
  border-radius: 12px;
  border: 2px dashed #e0e0e0;
  margin: 1rem 0;
  transition: all 0.3s ease;
}
.emptyState:hover {
  border-color: #d0d0d0;
  background: #f5f5f5;
}
.emptyState .emptyStateIcon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.emptyState:hover .emptyStateIcon {
  transform: scale(1.1);
  opacity: 0.8;
}
.emptyState p {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #666;
}
.emptyState small {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #999;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #FFAC12;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*# sourceMappingURL=map-style.css.map */
