/* src/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  overscroll-behavior: none;
}
@media (prefers-color-scheme: dark) {
  html,
  body {
    background-color: #1a1a1a;
  }
}
#app {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#google-map {
  flex: 1;
}
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  z-index: 10;
  pointer-events: none;
}
.top-bar > * {
  pointer-events: auto;
}
.icon-btn {
  width: 56px;
  height: 56px;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
}
.icon-btn:hover {
  background-color: #f9f9f9;
}
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  height: 56px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}
.logo-container img {
  height: 28px;
  width: auto;
  pointer-events: auto;
}
.material-icons {
  font-size: 24px;
  opacity: 0.5;
}
.search-container {
  position: relative;
  height: 56px;
  width: 56px;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    border-radius 0.3s ease;
  overflow: hidden;
  pointer-events: auto;
}
.search-container.expanded {
  width: 320px;
  height: auto;
  min-height: 56px;
  border-radius: 28px;
  max-height: calc(100vh - 40px);
}
.search-container.expanded.has-results {
  padding-bottom: 20px;
}
.search-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  box-sizing: border-box;
  transition: padding 0.3s ease;
}
.search-container.expanded .search-header {
  padding: 0 24px;
}
.search-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  cursor: pointer;
  transition: margin 0.3s ease;
}
.search-container.expanded .search-icon-wrapper {
  margin-right: 10px;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background: transparent;
  min-width: 0;
  display: none;
}
.search-container.expanded .search-input {
  display: block;
}
.clear-btn {
  border: none;
  background: transparent;
  color: black;
  opacity: 0.5;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
  display: none;
  white-space: nowrap;
}
.search-container.expanded .clear-btn {
  display: block;
}
.search-results-scroll {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  display: none;
  padding: 12px 0 0 0;
}
.search-container.expanded.has-results .search-results-scroll {
  display: block;
}
.left-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}
.left-stack > * {
  pointer-events: auto;
}
.left-stack.horizontal {
  flex-direction: row;
}
.network-filter-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 28px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.network-filter-logo {
  height: 18px;
  max-width: 80px;
  object-fit: contain;
}
.network-filter-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.network-filter-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #666;
  cursor: pointer;
  transition: background-color 0.2s;
}
.network-filter-clear:hover {
  background: #f0f0f0;
}
.network-filter-clear .material-icons {
  font-size: 20px;
}
.cluster-marker {
  cursor: pointer;
}
.cluster-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cluster-dot {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.cluster-dot-fallback {
  width: 24px;
  height: 24px;
  background: #4285F4;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.cluster-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
.custom-marker-container.simple .marker-wrapper {
  transform: scale(0.85);
}
.network-loading-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: white;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: opacity 0.3s ease-out;
}
.network-loading-modal.fade-out {
  opacity: 0;
}
.network-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.network-loading-logo {
  height: 32px;
  max-width: 120px;
  object-fit: contain;
}
.network-loading-text {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.network-loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #f0f0f0;
  border-top-color: #4285F4;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.result-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 24px;
  margin: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.15s ease;
}
.result-item:hover {
  background-color: #f5f5f5;
}
.result-item-active {
  background-color: #e8e8e8 !important;
}
.result-item-highlighted {
  background-color: #e8f0fe;
}
.recent-searches-header {
  padding: 8px 24px 4px 24px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.recent-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.recent-search-icon {
  font-size: 20px;
  color: #888;
  flex-shrink: 0;
}
.network-results-header,
.places-results-header {
  padding: 8px 24px 4px 24px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.network-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.network-result-item .result-title {
  font-weight: 400;
}
.network-result-logo {
  height: 20px;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.search-network-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 8px;
}
.search-network-logo {
  height: 26px;
  max-width: 100px;
  object-fit: contain;
}
.search-network-name {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-image {
  width: 64px;
  height: 64px;
  background-color: red;
  border-radius: 16px;
  flex-shrink: 0;
  margin-right: 12px;
}
.result-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}
.result-title {
  font-weight: bold;
  color: black;
  font-size: 14px;
}
.result-subtitle,
.result-details {
  font-weight: normal;
  color: black;
  opacity: 0.6;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.charger-details-wrapper {
  display: none;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
}
.charger-details-wrapper.visible {
  display: flex;
}
#charger-details-view {
  display: none;
  pointer-events: auto;
  cursor: default;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  background-color: #F9F9F9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.charger-details-wrapper.visible #charger-details-view {
  display: flex;
}
.charger-details-wrapper.default-position {
  position: fixed;
  top: 84px;
  left: 20px;
  z-index: 1000;
}
#charger-details-view.default-position {
  position: relative;
  width: 320px;
  min-width: 320px;
  height: auto;
  max-height: calc(100vh - 84px - 20px);
  min-height: 0;
  border-radius: 19px;
}
#charger-details-view.stack-position {
  position: relative;
  width: 320px;
  min-width: 320px;
  height: auto;
  max-height: calc(100vh - 40px);
  min-height: 0;
  border: 1px solid #EEEEEE;
  border-radius: 28px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.charger-details-wrapper.stack-position {
  position: relative;
}
#charger-details-view.beneath-position {
  position: relative;
  width: 320px;
  min-width: 320px;
  height: auto;
  max-height: calc(100vh - 20px - 56px - 8px - 20px);
  min-height: 0;
  border: 1px solid #EEEEEE;
  border-radius: 28px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.charger-details-wrapper.beneath-position {
  position: relative;
}
.charger-image {
  width: 100%;
  height: 163px;
  background-color: #EEEEEE;
  flex-shrink: 0;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  position: relative;
}
.charger-image-loading {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.charger-image-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.charger-image-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-images {
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: transform 0.33s ease-in-out;
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(128, 128, 128, 0.4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  transition: background-color 0.2s ease;
}
.carousel-arrow:hover {
  background-color: rgba(128, 128, 128, 0.5);
}
.carousel-arrow-left {
  left: 12px;
}
.carousel-arrow-right {
  right: 12px;
}
.carousel-arrow .material-icons {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  opacity: 1 !important;
}
.charger-info-container {
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.charger-info-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.charger-info-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.charger-provider-name {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin-bottom: 4px;
}
.charger-rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  flex-wrap: wrap;
  gap: 2px;
}
.charger-rating-container .material-icons {
  font-size: 13px;
  color: black;
  margin-right: 2px;
}
.charger-rating-container > .material-icons:first-child {
  display: none;
}
.charger-score {
  font-size: 13px;
  font-weight: 600;
  color: black;
  margin-right: 2px;
  display: none;
}
.charger-reviews {
  font-size: 13px;
  font-weight: normal;
  color: #666;
  display: none;
}
.charger-spacer {
  width: 4px;
  display: none;
}
.charger-safety {
  font-size: 13px;
  font-weight: normal;
  color: black;
}
.charger-separator {
  margin: 0 3px;
  color: #999;
  font-size: 13px;
}
.charger-eta-icon,
.charger-eta-text {
  display: none;
  font-size: 13px;
  color: black;
  font-weight: normal;
}
.charger-eta-icon {
  margin-right: 2px;
}
.charger-rating-container.has-eta .charger-eta-icon,
.charger-rating-container.has-eta .charger-eta-text {
  display: inline;
}
.charger-rating-container .charger-separator:last-of-type {
  display: none;
}
.charger-rating-container.has-eta .charger-separator:last-of-type {
  display: inline;
}
.charger-address {
  font-size: 13px;
  font-weight: normal;
  color: black;
}
.charger-price-container {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.charger-currency {
  font-size: 16px;
  font-weight: normal;
  color: black;
  margin-right: 2px;
  line-height: 1;
  margin-top: 4px;
}
.charger-price-value {
  font-size: 36px;
  font-weight: 600;
  color: black;
  line-height: 1;
}
.charger-details-row {
  display: flex;
  align-items: center;
}
.charger-stalls-text {
  font-size: 13px;
  font-weight: normal;
  color: #666;
}
.charger-details-separator {
  font-size: 13px;
  color: #999;
  margin: 0 4px;
}
.charger-power-text {
  font-size: 13px;
  font-weight: normal;
  color: #666;
}
.location-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  pointer-events: auto;
}
.location-btn[disabled] {
  cursor: not-allowed;
}
.location-btn[disabled] .material-icons {
  opacity: 0.25;
}
.sign-in-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sign-in-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.sign-in-modal {
  background: white;
  border-radius: 28px;
  padding: 40px 20px;
  width: calc(100% - 40px);
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.sign-in-modal-overlay.visible .sign-in-modal {
  transform: scale(1);
}
.sign-in-modal-title {
  font-size: 24px;
  font-weight: 600;
  color: black;
  margin: 0;
  text-align: center;
}
.sign-in-modal-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}
.sign-in-button {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.sign-in-button:active {
  opacity: 0.8;
}
.sign-in-button-apple {
  background: #000000;
  color: #FFFFFF;
  border: none;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Helvetica Neue",
    sans-serif;
}
.sign-in-button-apple:hover {
  background: #333333;
}
.sign-in-button-apple svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
}
.sign-in-button-google {
  background: #FFFFFF;
  color: #1F1F1F;
  border: 1px solid #747775;
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}
.sign-in-button-google:hover {
  background: #F8FAFF;
  border-color: #747775;
}
.sign-in-button-google svg {
  width: 18px;
  height: 18px;
}
.sign-in-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 28px;
}
.sign-in-loading-overlay.visible {
  display: flex;
}
.sign-in-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #EEEEEE;
  border-top-color: black;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.sign-in-loading-text {
  font-size: 14px;
  color: #666;
}
.sign-in-cancel-button {
  margin-top: 16px;
  padding: 8px 24px;
  font-size: 14px;
  color: #666;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sign-in-cancel-button:hover {
  background: #f5f5f5;
  border-color: #999;
}
.profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.profile-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #007AFF;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#profile-btn.logged-in {
  padding: 4px;
}
.profile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.profile-menu.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.profile-menu-header {
  padding: 16px;
  border-bottom: 1px solid #EEEEEE;
}
.profile-menu-name {
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 4px;
}
.profile-menu-email {
  font-size: 14px;
  color: #666;
}
.profile-menu-id {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
  font-family: monospace;
  word-break: break-all;
}
.profile-menu-item {
  padding: 12px 16px;
  font-size: 14px;
  color: black;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.profile-menu-item:hover {
  background-color: #f5f5f5;
}
.profile-menu-item.sign-out {
  color: #E31937;
  border-top: 1px solid #EEEEEE;
}
#debug-image-view {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 19px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
}
#debug-image-container {
  width: 100%;
  margin-bottom: 12px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 8px;
}
#debug-image-container img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 4px;
}
#debug-image-info {
  font-size: 12px;
  color: #666;
  white-space: pre-wrap;
  word-break: break-all;
  font-family: monospace;
  background-color: #f9f9f9;
  padding: 8px;
  border-radius: 4px;
}
#charger-debug-view {
  display: none;
  flex-direction: column;
  width: 280px;
  min-width: 280px;
  background-color: white;
  border: 1px solid #EEEEEE;
  border-radius: 19px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  overflow-y: auto;
}
.charger-details-wrapper.visible #charger-debug-view {
  display: flex;
}
.charger-details-wrapper.default-position #charger-debug-view {
  max-height: calc(100vh - 84px - 20px);
}
.charger-details-wrapper.stack-position #charger-debug-view,
.charger-details-wrapper.beneath-position #charger-debug-view {
  max-height: calc(100vh - 40px);
}
.debug-header {
  font-size: 16px;
  font-weight: bold;
  color: black;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #EEEEEE;
}
.debug-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.debug-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.debug-value {
  font-size: 14px;
  color: black;
  font-family: monospace;
  word-break: break-all;
  padding: 8px;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.debug-dropdown {
  font-size: 12px;
  font-family: monospace;
  padding: 8px;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  background-color: white;
  color: black;
  min-height: 100px;
  max-height: 200px;
  overflow-y: auto;
}
.debug-dropdown option {
  padding: 4px;
  font-size: 12px;
}
.carousel-indicator {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  z-index: 5;
}
.charger-branding {
  display: flex;
  align-items: center;
  gap: 6px;
}
.charger-provider-name-branded {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
}
.charger-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 16px 16px;
  border-bottom: none;
}
.btn-preview-route {
  flex: 1;
  padding: 0 16px;
  height: 38px;
  max-height: 38px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 19px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.btn-preview-route:hover {
  background-color: #333;
}
.action-icons {
  display: flex;
  gap: 8px;
}
.action-icons .material-icons {
  opacity: 1;
}
.icon-btn-small {
  width: 38px;
  height: 38px;
  max-height: 38px;
  background: #EEEEEE;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.icon-btn-small:hover {
  background-color: #E0E0E0;
}
.icon-btn-small .material-icons {
  font-size: 18px;
  opacity: 1;
}
.status-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin: 0 24px 16px 24px;
  background-color: #FFF3E0;
  border-radius: 8px;
  border: 1px solid #FFB74D;
}
.status-icon {
  color: #FF9800;
  font-size: 20px;
  opacity: 1;
}
.status-text {
  font-size: 14px;
  font-weight: 600;
  color: #FF9800;
  flex: 1;
}
.status-time {
  font-size: 12px;
  color: #666;
}
.detail-section {
  padding: 0 24px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex: 0 0 auto;
}
.detail-icon {
  font-size: 20px;
  color: black;
  opacity: 0.6;
  margin-top: 2px;
}
.detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.detail-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}
.detail-value {
  font-size: 16px;
  font-weight: 600;
  color: black;
}
.detail-text {
  font-size: 14px;
  color: black;
  line-height: 1.5;
}
.detail-text div {
  margin-bottom: 2px;
}
.charger-edit-buttons {
  display: flex;
  gap: 12px;
  padding: 0 16px 16px 16px;
}
.btn-report {
  flex: 1;
  padding: 0 16px;
  height: 44px;
  max-height: 48px;
  background-color: #FF9800;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.btn-report:hover {
  background-color: #F57C00;
}
.location-info-section {
  display: block;
}
.no-location-section {
  display: none;
  padding: 0 16px;
}
.prompt-card {
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  text-align: center;
}
.prompt-text {
  font-size: 15px;
  font-weight: 500;
  color: black;
  margin-bottom: 16px;
}
.prompt-buttons {
  display: flex;
  gap: 12px;
}
.btn-inform {
  flex: 1;
  padding: 0 16px;
  height: 44px;
  max-height: 48px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.btn-inform:hover {
  background-color: #333;
}
.btn-report-outline {
  flex: 1;
  padding: 0 16px;
  height: 44px;
  max-height: 48px;
  background-color: white;
  color: #FF6B00;
  border: 1px solid #E0E0E0;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.btn-report-outline:hover {
  background-color: #FFF5F0;
}
.btn-write-review-full {
  width: 100%;
  padding: 0 16px;
  height: 44px;
  max-height: 48px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.btn-write-review-full:hover {
  background-color: #333;
}
.status-alert {
  display: none;
  margin: 0 0 16px 0;
  background-color: rgba(239, 93, 0, 0.08);
  border-radius: 12px;
  border: none;
  padding: 16px;
}
.status-alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-icon {
  color: #FF6B00;
  font-size: 24px;
  opacity: 1;
}
.status-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.status-text {
  font-size: 15px;
  font-weight: 600;
  color: #FF6B00;
}
.status-time {
  font-size: 13px;
  color: #FF6B00;
  opacity: 0.7;
}
.location-card {
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  margin: 0 16px 16px 16px;
  padding: 16px;
}
.location-row {
  display: flex;
  justify-content: space-around;
  padding-bottom: 16px;
  margin-bottom: 0;
}
.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.location-icon {
  font-size: 24px;
  color: black;
  opacity: 1;
}
.location-value {
  font-size: 20px;
  font-weight: 600;
  color: black;
}
.location-label {
  font-size: 12px;
  color: black;
  font-weight: 500;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
}
.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#chargers-row {
  border-bottom: none;
}
#chargers-row .material-icons {
  opacity: 1;
}
.info-icon-wrapper {
  width: 44px;
  height: 44px;
  background: #F9F9F9;
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon {
  font-size: 20px;
  color: black;
}
.info-content {
  flex: 1;
}
.info-label {
  font-size: 14px;
  font-weight: 600;
  color: black;
  margin-bottom: 4px;
}
.info-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.info-text div {
  margin-bottom: 2px;
}
.info-text div:last-child {
  margin-bottom: 0;
}
.location-card .charger-edit-buttons {
  padding: 16px 0 0 0;
  margin: 0;
}
.btn-edit {
  flex: 1;
  padding: 0 16px;
  height: 44px;
  max-height: 48px;
  background-color: white;
  color: black;
  border: 1px solid #E0E0E0;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.btn-edit:hover {
  background-color: #f5f5f5;
}
.reviews-section {
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  margin: 0 16px 16px 16px;
  padding: 16px;
}
.reviews-empty {
  font-size: 14px;
  color: #999;
  text-align: center;
  padding: 24px 0;
}
.reviews-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0F0F0;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.reviews-score {
  font-size: 32px;
  font-weight: 400;
  color: black;
  line-height: 1;
}
.reviews-star {
  font-size: 16px;
  color: black;
  opacity: 1;
  line-height: 1;
}
.reviews-count {
  font-size: 14px;
  color: #999;
  margin-left: 4px;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.review-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0F0F0;
}
.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.review-text {
  font-size: 14px;
  color: black;
  line-height: 1.5;
}
.review-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #999;
}
.review-meta-item {
  display: flex;
  align-items: center;
}
.review-meta-separator {
  margin: 0 6px;
  color: #CCC;
  font-weight: 300;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
}
.review-rating .material-icons {
  font-size: 14px;
  color: #666;
}
.review-author {
  color: #666;
}
.review-time {
  color: #999;
}
.btn-write-review {
  width: 100%;
  padding: 0 16px;
  height: 44px;
  max-height: 48px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.btn-write-review:hover {
  background-color: #333;
}
.nearby-section {
  padding: 16px;
  background: transparent;
  border: none;
}
.nearby-header {
  font-size: 17px;
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}
.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nearby-item {
  display: flex;
  gap: 12px;
}
.nearby-image {
  width: 70px;
  height: 70px;
  border-radius: 25%;
  flex-shrink: 0;
  background-color: #EEEEEE;
  overflow: hidden;
}
.nearby-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nearby-name {
  font-size: 15px;
  font-weight: 600;
  color: black;
}
.nearby-type {
  font-size: 13px;
  color: #666;
}
.nearby-status {
  font-size: 13px;
  color: #666;
}
.nearby-status .status-open {
  color: #34A853;
  font-weight: 500;
}
.nearby-status .status-closed {
  color: #EA4335;
  font-weight: 500;
}
.nearby-distance {
  font-size: 12px;
  color: #999;
  flex-shrink: 0;
  margin-left: auto;
  align-self: flex-start;
  margin-top: 4px;
}
.nearby-loading,
.nearby-empty {
  font-size: 14px;
  color: #999;
  text-align: center;
  padding: 24px 0;
}
.custom-marker-container {
  cursor: pointer;
  z-index: 1;
}
.custom-marker-container:hover {
  z-index: 100;
}
.custom-marker-container.marker-drop {
  animation: markerDrop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes markerDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(4px) scale(1.02);
  }
  80% {
    transform: translateY(-2px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.marker-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.price-card {
  background: white;
  border-radius: 6px;
  padding: 4px 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
  margin-bottom: -3px;
  z-index: 1;
}
.price-row {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
.price-value {
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.price-cents {
  font-size: 10px;
  font-weight: 500;
  color: black;
  vertical-align: super;
  margin-top: 2px;
}
.power-label {
  font-size: 10px;
  font-weight: 500;
  color: #666;
  margin-top: 0;
}
.marker-image-container {
  position: relative;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
}
.marker-pin {
  width: 22px;
  height: 22px;
  position: relative;
  transition: width 0.2s ease, height 0.2s ease;
}
.marker-group {
  width: 54px;
  height: 38px;
  transition: width 0.2s ease, height 0.2s ease;
}
.custom-marker-container.selected .marker-pin {
  width: 25px;
  height: 25px;
}
.custom-marker-container.selected .marker-group {
  width: 62px;
  height: 44px;
}
.marker-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.count-badge {
  position: absolute;
  right: 6px;
  top: 2px;
  background: transparent;
  color: white;
  font-size: 13px;
  font-weight: 700;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.count-badge.dark-text {
  color: black;
}
.charger-provider-logo {
  height: 24px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: none;
}
.ios-promo-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: white;
  color: black;
  padding: 14px 28px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 500;
  font-family: Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s, box-shadow 0.2s;
  pointer-events: auto;
}
.ios-promo-button:hover {
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.ios-promo-button.apple-style {
  background: #000000;
  color: #FFFFFF;
  padding: 0 20px;
  height: 50px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Helvetica Neue",
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.ios-promo-button.apple-style:hover {
  background: #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.ios-promo-button.apple-style svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}
.ios-promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ios-promo-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.ios-promo-modal {
  background: white;
  border-radius: 28px;
  padding: 40px 24px;
  width: calc(100% - 48px);
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.ios-promo-overlay.visible .ios-promo-modal {
  transform: scale(1);
}
.ios-promo-title {
  font-size: 22px;
  font-weight: 600;
  color: black;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}
.ios-promo-store-link {
  display: block;
}
.ios-promo-store-link .app-store-badge {
  width: 150px;
  height: 50px;
}
.ios-promo-dismiss {
  background: transparent;
  border: none;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  font-family: Arial, sans-serif;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s;
}
.ios-promo-dismiss:hover {
  color: #333;
}
.address-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.address-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.address-modal {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  width: calc(100% - 48px);
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.address-modal-overlay.visible .address-modal {
  transform: scale(1);
}
.address-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: black;
  text-align: center;
}
.address-modal-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  box-sizing: border-box;
}
.address-modal-input:focus {
  border-color: #666;
}
.address-modal-results {
  display: flex;
  flex-direction: column;
  max-height: 200px;
  overflow-y: auto;
}
.address-modal-result-item {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.15s;
}
.address-modal-result-item:hover {
  background-color: #f5f5f5;
}
.address-modal-result-main {
  font-size: 14px;
  font-weight: 500;
  color: black;
}
.address-modal-result-secondary {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}
.address-modal-cancel {
  background: transparent;
  border: none;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  cursor: pointer;
  padding: 12px;
  transition: color 0.2s;
}
.address-modal-cancel:hover {
  color: #333;
}
