.portal-header {
    background-color: white;
    padding: 12px 16px 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
  }
  
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .pm-icon-button {
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    padding: 4px;
    cursor: pointer;
  }
  
  .pm-search-input {
    flex: 1;
    margin: 0 12px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 14px;
    background-color: #f8f8f8;
    outline: none;
  }
  
  .header-location {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: #d72638; /* Rojo Portal Motores */
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .header-location i {
    font-size: 14px;
    color: #d72638;
  }
  
  .header-location.clickable {
    cursor: pointer;
    transition: opacity 0.2s;
  }
  
  .header-location.clickable:hover {
    opacity: 0.85;
  }