  .pm-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: flex-end;
    z-index: 9999;
  }
  
  .pm-drawer {
    background-color: white;
    width: 100%;
    max-width: 480px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 1rem;
    animation: pm-slide-up 0.3s ease-out;
  }
  
  .pm-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .pm-close-button {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
  }
  
  .pm-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .pm-input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .pm-use-location {
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #00c853;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  @keyframes pm-slide-up {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .pm-drawer-overlay-filter {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: none; /* Cambiar a flex cuando se abre */
    justify-content: center;
    align-items: flex-end;
    z-index: 9999;
  }
  
  .pm-drawer-filter {
    background-color: white;
    width: 100%;
    max-width: 480px;
    height: 80vh; /* Altura fija */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    flex-direction: column;
    animation: pm-slide-up 0.3s ease-out;
  }
  
  /* Header fijo arriba */
  .pm-drawer-header-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  /* El contenido hace scroll */
  .pm-drawer-body-filter {
    flex-grow: 1;
    overflow-y: auto;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }