:root, body, header {
    background-color: darkgray;
}

.accordion-button {
  font-weight: bold;
  background-color: #343a40;
  color: #fff;
}
.accordion-button:not(.collapsed) {
  background-color: #495057;
  color: #fff;
}
.accordion-body ul {
  padding-left: 1.2rem;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}
.badge {
  margin-right: 0.3rem;
}

.video-compare {
    display: flex;
    gap: 1rem; /* odstęp między filmikami */
    justify-content: center; /* wyśrodkowanie poziome */
    flex-wrap: wrap; /* jeśli ekran za wąski, filmiki przejdą jeden pod drugim */
}
.video-compare video {
    max-width: 48%;
    flex: 1 1 100%; /* elastyczna szerokość, np. 45% */
}

.image-compare {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.image-box {
    aspect-ratio: 16 / 9; /* lub 4 / 3, zależnie od stylu */
    overflow: hidden;
    flex: 1 1 45%;
    max-width: 45%;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* .image-compare img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}
 */

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}