/* PANNEAU LATÉRAL */
.search-panel {
  position: fixed;
  top: 0;
  left: -550px; /* caché à gauche */
  width: 550px;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* même transparence que tes blocs ASPM */
  box-shadow: 4px 0 20px rgba(0,0,0,0.2);
  transition: left 0.35s ease;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

/* Quand le panneau est ouvert */
.search-panel.open {
  left: 0;
}

/* HEADER DU PANNEAU */
.search-header {
  display: flex;
  justify-content: flex-end;
}

.search-close {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1f4e79;
}

/* CONTENU */
.search-content {
  margin-top: 150px; /* espace pour laisser le logo visible */
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-options-title {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #1f4e79;
}

.search-options {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.search-options li {
  padding: 8px 0;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.search-options li:hover {
  color: #1f4e79;
}

.search-panel {
  transition: left 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}

.search-panel.open {
  left: 0;
  opacity: 1;
}
