.video-container {
    box-shadow: 0px 0px 10px 3px rgba(10, 10, 10, 1);
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    display: inline-block;
    border-radius: 15px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}


@media (max-width: 768px) {
    table th, table td {
      padding: 0.5rem; /* Mniejsze odstępy w komórkach */
      font-size: 0.85rem; /* Zmniejszony rozmiar czcionki */
    }
  
    table {
      font-size: 0.9rem; /* Zmniejszony rozmiar tabeli */
    }
  
    a {
      font-size: 0.9rem; /* Zmniejszony rozmiar linków */
    }
  }
  
  @media (max-width: 468px) {
    table th, table td {
      padding: 0.1rem; /* Jeszcze mniejsze odstępy w komórkach */
      font-size: 0.35rem; /* Zmniejszony rozmiar czcionki */
    }
  
    table {
      font-size: 0.3rem; /* Jeszcze bardziej zmniejszony rozmiar tabeli */
    }
  
    a {
      font-size: 0.3rem; /* Zmniejszony rozmiar linków */
    }
  }


@media (max-width: 1224px) {
    .video-container {
        width: 630px !important;
        height: 300px !important;
    }
}
@media (max-width: 1124px) {
    .video-container {
        width: 570px !important;
        height: 300px !important;
    }
}
@media (max-width: 1024px) {
    .video-container {
        width: 530px !important;
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .video-container {
        width: 450px !important;
        height: 300px !important;
    }
}

.banner_big {
    background: url(../images/buttons/big.png) no-repeat;
    color: #d5cc9f; /* Zmiana koloru tekstu na zielony */
    display: flex; /* Użycie flexbox do wyśrodkowania tekstu */
    justify-content: center; /* Wyśrodkowanie poziome */
    align-items: center; /* Wyśrodkowanie pionowe */
    font-size: 17px;
    font-weight: 700;
    height: 88px;
    line-height: 25px;
    margin: 5px auto;
    text-decoration: none;
    text-shadow: 0 1px 2px #000, 0 1px 4px #000;
    transition: background-color .4s, background-position .4s;
    width: 280px;
}

.banner_medium {
background: url(../images/buttons/medium.png) no-repeat;
color: #d5cc9f;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
font-weight: 700;
height: 43px;
line-height: 25px;
margin: 5px auto;
text-decoration: none;
text-shadow: 0 1px 2px #000, 0 1px 4px #000;
transition: background-color .4s, background-position .4s;
width: 235px;
}
.banner_small {
background: url(../images/buttons/small.png) no-repeat;
color: #d5cc9f;
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
font-weight: 700;
height: 31px;
line-height: 25px;
margin: 5px auto;
text-decoration: none;
text-shadow: 0 1px 2px #000, 0 1px 4px #000;
transition: background-color .4s, background-position .4s;
width: 170px;
}

.img-new{
    border-radius: 5px;
    box-shadow: 0px 0px 10px 3px rgba(10, 10, 10, 1);
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .img-new {
      width: auto !important; /* Ustawiamy width na auto */
      height: auto !important; /* Ustawiamy height na auto */
      max-width: 100%; /* Obraz nie przekroczy szerokości ekranu */
    }
  }
.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.375rem;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 3rem;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
}

.alert-primary {
    --bs-alert-color: #084298;
    --bs-alert-bg: #cfe2ff;
    --bs-alert-border-color: #b6d4fe;
}

.alert-primary .alert-link {
    color: #06357a;
}

.alert-secondary {
    --bs-alert-color: #41464b;
    --bs-alert-bg: #e2e3e5;
    --bs-alert-border-color: #d3d6d8;
}

.alert-secondary .alert-link {
    color: #34383c;
}

.alert-success {
    --bs-alert-color: #0f5132;
    --bs-alert-bg: #d1e7dd;
    --bs-alert-border-color: #badbcc;
}

.alert-success .alert-link {
    color: #0c4128;
}

.alert-info {
    --bs-alert-color: #055160;
    --bs-alert-bg: #cff4fc;
    --bs-alert-border-color: #b6effb;
}

.alert-info .alert-link {
    color: #04414d;
}

.alert-warning {
    --bs-alert-color: #664d03;
    --bs-alert-bg: #fff3cd;
    --bs-alert-border-color: #ffecb5;
}

.alert-warning .alert-link {
    color: #523e02;
}

.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #f8d7da;
    --bs-alert-border-color: #f5c2c7;
}

.alert-danger .alert-link {
    color: #6a1a21;
}

.alert-light {
    --bs-alert-color: #636464;
    --bs-alert-bg: #fefefe;
    --bs-alert-border-color: #fdfdfe;
}

.alert-light .alert-link {
    color: #4f5050;
}

.alert-dark {
    --bs-alert-color: rgba(176, 181, 187, 0.91);
    --bs-alert-bg: rgba(33, 33, 48, 0.44);
    --bs-alert-border-color: rgba(19, 31, 37, 0.57);
}

.alert-dark .alert-link {
    color: #101214;
}


.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 150px;
    position: relative;
}

.social-button i {
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.social-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}

.social-button:hover i {
    transform: translateX(-35px);
}

.social-button:hover .social-text {
    opacity: 1;
    transform: translateX(-20px);
}

body {
    font-family: Arial, sans-serif;
    background-color: #2c2c2c;
    color: #e0e0e0;
    text-align: center;
    padding: 50px;
    position: relative;
    margin: 0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('_e7aa.html?php%20echo%20$background_image;%20?>');
    background-size: cover;
    background-position: center top;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    mask-size: 100% 70%;
    mask-repeat: no-repeat;
}

body {
    padding-top: 70px;
}

.sidebar a.active {
    background-color: rgba(180, 174, 169, 0.16);
    color: rgba(255, 236, 229, 0.7);
    border-radius: 4px;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: rgba(71, 70, 63, 0.37);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    z-index: 1000;
    box-shadow: rgba(71, 70, 63, 0.37);
    transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: rgba(71, 70, 63, 0.57);
}

.sidebar {
    width: 190px;
    background-color: rgba(34, 34, 34, 0.9);
    padding: 20px;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.sidebar a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px;
    margin-bottom: 10px;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidebar a:hover {
    background-color: rgba(180, 174, 169, 0.16);
}

.content {
    margin-left: 210px;
}

.separator {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 40px 0;
}

.accordion {
    border-radius: 8px;
}

.accordion-item {
    border-bottom: none;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion button {
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #cdcdcd;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    position: relative;
    cursor: pointer;
}

.accordion-title {
    padding: 1em 1.5em 1em 0;
}

.icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-90%);
    font-size: 1.5rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
}

button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    padding: 20px 20px;
}

.bubble {
    background-color: rgba(133, 131, 131, 0.07);
    color: #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    margin-top: 10px;
    font-size: 1rem;
}

.accordion-content p {
    margin: 0;
    padding: 1em 1.5em;
    font-size: 1rem;
    font-weight: 300;
}

.selection-item {
    padding: 12px;
    text-align: center;
    font-size: 16px;
}

.dropdown-container {
    max-width: none;
    width: 100%;
    padding-left: 0;
}

h1 {
    color: #ffffff;
    margin-top: 0;
}

.navbar-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(44, 44, 44, 0.9);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.navbar img {
    height: 50px;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: #e0e0e0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
    position: relative;
}

.navbar ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.navbar ul li a:hover {
    background-color: rgba(180, 174, 169, 0.16);
}

.navbar ul li a.active {
    background-color: rgba(180, 174, 169, 0.16);
    border-radius: 8px;
    color: rgba(255, 236, 229, 0.7);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(44, 44, 44, 0.9);
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%);
    
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #4CAF50;
}

.navbar ul li:hover .dropdown-content {
    display: block;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.menu-overlay a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    padding: 20px;
    display: block;
}

.menu-overlay a:hover {
    background-color: #4CAF50;
}

.menu-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
}

.results {
    background-color: rgba(44, 44, 44, 0.8);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    width: 70%;
    margin: 220px auto 20px auto;
}

.question {
    margin-bottom: 20px;
}

.question h3 {
    color: #ffffff;
}

.bar-container {
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
}

.bar {
    height: 100%;
    border-radius: 8px;
    display: flex;
    background-color: #4CAF50;
    align-items: center;
}

.percentage {
    padding-left: 10px;
    color: #ffffff;
    font-size: 0.9em;
    white-space: nowrap;
}

.bar.no {
    background-color: #f44336;
}

.bar.neutral {
    background-color: #ffc107;
}

.footer {
    font-size: 0.8em;
    color: #e0e0e0;
    margin-top: 20px;
}

body {
    padding: 20px;
}

@media (max-width: 768px) {
    .navbar-container {
        width: 100%;
    }

    .navbar ul {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .results {
        width: 95%;
        max-width: 100%;
        padding: 15px;
        margin: 50px auto 20px auto;
        margin-top: 5rem;
    }

    .question h3 {
        font-size: 1.1em;
    }

    .percentage {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .navbar img {
        height: 35px;
    }

    .navbar-container {
        width: 100%;
    }

    .results {
        width: 95%;
        max-width: 100%;
        padding: 10px;
        margin: 20px auto 20px auto;
        margin-top: 5rem;
    }

    .bar {
        height: 18px;
    }

    h1 {
        font-size: 1.5em;
    }

    .question h3 {
        font-size: 1em;
    }

    .percentage {
        font-size: 0.75em;
    }
}