.map-placeholder {
    width: 100%;
    /* Utrzymuje proporcje mapy (np. 16:9), co zapobiega "skakaniu" strony */
    aspect-ratio: 20 / 9; 
    min-height: 300px;
    background-color: #f4f4f7;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #718096;
    font-family: sans-serif;
  }

  .placeholder-content {
    padding: 20px;
  }

  .icon-map {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: grayscale(1);
    opacity: 0.5;
  }

  .map-placeholder h3 {
    margin: 0 0 8px 0;
    color: #4a5568;
  }

  .map-placeholder p {
    margin: 0;
    font-size: 0.9rem;
  }

  /* Responsywność dla mniejszych ekranów */
  @media (max-width: 600px) {
    .map-placeholder {
        display: none;
    }
  }