html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#map {
  height: calc(100vh - 56px); /* navbar height */
  width: 100%;
}
.gallery-thumb {
  transition: transform 0.2s ease;
}
.gallery-thumb:hover {
  transform: scale(1.05);
}
#prevBtn, #nextBtn {
  font-size: 2rem;
  opacity: 0.8;
}
#prevBtn:hover, #nextBtn:hover {
  opacity: 1;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #212529;
  color: #fff;
  padding: .75rem 0;
  font-size: .9rem;
  z-index: 1050;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
}

.cookie-banner .btn {
  white-space: nowrap;
}

.radny-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    height: 100%;
}

.radny-media {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.radny-avatar {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #ddd;
    object-fit: cover;
}

.radny-avatar.placeholder {
    object-fit: contain;
    padding: 10px;
    opacity: .25;
}


.radny-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.radny-body h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.radny-body p,
.radny-body li {
    line-height: 1.25;
}

.radny-body ul {
    margin-bottom: 0;
}

.radny-contact {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.radny-contact a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    background: #fff;
    text-decoration: none;
    transition: background-color .15s, color .15s, border-color .15s;
}

.radny-contact a:hover {
    background: #f1f3f5;
    color: #0d6efd;          /* bootstrap primary */
    border-color: #ced4da;
}

.radny-contact i {
    font-size: 1rem;
    line-height: 1;
}

.rada-osiedla-contact a span {
    font-size: 0.9rem;
    line-height: 1;
}

.rada-osiedla-contact {
    gap: 10px;
}

.rada-osiedla-contact a {
    width: auto;              /* ← najważniejsze */
    padding: 0 10px;
    justify-content: flex-start;
}

.rada-osiedla-contact a span {
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
}

.rada-osiedla-contact a i {
    margin-right: 6px;
}

.radny-klub {
    margin-top: 6px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.radny-klub img {
    width: 80%;
    height: auto;
    max-height: 70px;
}

.radny-organy {
    list-style: none;
    padding-left: 0;
    margin: 4px 0 6px 0;
}

.radny-organy li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 2px;
    line-height: 1.25;
}

.radny-organy li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #adb5bd;
}

.radny-organy a {
    color: #495057;                 /* neutralny grafit */
    text-decoration: none;
    border-bottom: 1px dotted #ced4da;
    transition: color .15s, border-color .15s;
}

.radny-organy a:hover {
    color: #0d6efd;                 /* bootstrap primary */
    border-bottom-color: #0d6efd;
}

