/* pełnoekranowy overlay */
#globalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  display: none; /* ukryty domyślnie */
  z-index: 999;
}

.new-postbox {
  position: relative;
  z-index: 1000;
}


.navbar {
      background-color: #e8ebeb;
    }

    .navbar-brand img {
      max-height: 40px;
    }

    .search-form {
      flex-grow: 1;
      max-width: 600px;
    }

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        align-items: center;
      }

      .navbar-brand img {
        max-height: 30px;
      }

      .search-form {
        width: 100%;
        margin-top: 10px;
      }
    }


 .search-pill {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    border: 2px solid #555;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s, border-color 0.2s;
  }

  .search-pill:focus-within {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #333;
  }

  .search-pill i {
    color: #555;
    font-size: 1rem;
    margin-right: 0.5rem;
  }

  .search-pill input {
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 0.85rem;
    flex: 1;
    padding: 0.3rem 0.2rem;
    background: transparent;
  }

  @media (max-width: 768px) {
    .container-fluid {
      flex-direction: column;
      align-items: center;
    }

    .navbar-brand img {
      height: 28px;
    }

    .search-pill {
      width: 90% !important;
      margin: 0 auto;
    }
  }