/**
 * @file
 * Styles für Explorer Map Layout.
 */

.main-content__container.container {
  padding: 0 !important;
  max-width: 100% !important;
}

.region > :where(:not([data-big-pipe-placeholder-id])) {
  margin-block-end: 0 !important;
}

.explorer-sidebar-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100vh;
  z-index: 100;
  transition: width 0.3s ease-in-out;
}

.explorer-sidebar-wrapper.sidebar-closed {
  width: 0;
}

.explorer-sidebar {
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: 1px solid #e7edf1;
  box-shadow: 4px 2px 7px rgba(0,0,0,.15);
  background-color: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.explorer-sidebar-wrapper.sidebar-closed .explorer-sidebar {
  opacity: 0;
  pointer-events: none;
}

.explorer-map {
  position: relative;
}

/* Toggle Button Styles */
.explorer-sidebar-toggle {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 80px;
  background-color: #3D720A;
  border: 1px solid #3D720A;
  border-right: none;
  border-radius: 0.5rem 0 0 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  z-index: 101;
  transition: all 0.3s ease-in-out;
}

.explorer-sidebar-toggle:hover {
  background-color: #3D720A;
}

.explorer-sidebar-toggle:active {
  background-color: #3D720A;
}

/* Button wenn Sidebar geschlossen ist */
.explorer-sidebar-wrapper.sidebar-closed .explorer-sidebar-toggle {
  left: auto;
  right: 0;
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: 1px solid #3D720A;
  border-left: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .explorer-sidebar-wrapper {
    width: 100%;
  }
  
  .explorer-sidebar-wrapper.sidebar-closed {
    width: 0;
  }
  
  /* Button wenn Sidebar GEÖFFNET ist (100% Breite) - Links innen */
  .explorer-sidebar-wrapper:not(.sidebar-closed) .explorer-sidebar-toggle {
    left: 0;
    right: auto;
    border-left: none;
    border-right: 1px solid #3D720A;
    border-radius: 0 0.5rem 0.5rem 0;
  }
  
  /* Button wenn Sidebar GESCHLOSSEN ist - Rechts am Rand */
  .explorer-sidebar-wrapper.sidebar-closed .explorer-sidebar-toggle {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid #3D720A;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  
  /* Auf Mobile ist die Sidebar standardmäßig geschlossen */
  body:not(.sidebar-initialized) .explorer-sidebar-wrapper {
    width: 0;
  }
  
  body:not(.sidebar-initialized) .explorer-sidebar-wrapper .explorer-sidebar {
    opacity: 0;
    pointer-events: none;
  }
  
  body:not(.sidebar-initialized) .explorer-sidebar-wrapper .explorer-sidebar-toggle {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid #3D720A;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}