.footer__content {
    min-height: 50px;
    padding-bottom: 0px;
}

/* Kontener główny */
.logos-slider {
    overflow: hidden;
    padding: 30px 0;
    background: #fff;
    white-space: nowrap;
    position: relative;
}

/* Szyna z logotypami */
.logos-track {
    display: inline-block;
    animation: scroll 30s linear infinite; /* Prędkość przesuwania */
}

/* Pojedynczy logotyp */
.logo-item {
    display: inline-block;
    padding: 0 20px;
    vertical-align: middle;
}

.logo-item img {
    max-height: 80px;
    width: auto;
    //filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* EFEKTY PO NAJECHANIU */

/* 1. Zatrzymaj animację całej szyny */
.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

/* 2. Przywróć kolory konkretnemu logotypowi */
.logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05); /* Opcjonalnie: lekkie powiększenie */
}

/* Definicja animacji przesuwania */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Przesuwamy o połowę szerokości duplikatu */
}


/* --- Style dla agendy konferencji (#006432) --- */

.agenda-container {
    margin-top: 20px;
    margin-bottom: 30px;
}

.agenda-table {
    background-color: #ffffff;
    border-collapse: separate;
}

/* Nagłówek tabeli */
.agenda-table > thead > tr > th {
    background-color: #006432;
    color: #ffffff;
    padding: 12px 15px;
    font-weight: 600;
    border: none;
    white-space: nowrap;
}

/* Podstawowe wiersze */
.agenda-table > tbody > tr > td {
    padding: 15px;
    font-size: 15px;
    border-top: 1px solid #f2f2f2;
}

/* Kolumna z godzinami dla głównych punktów */
.agenda-table .agenda-time {
    font-weight: bold;
    color: #006432;
    white-space: nowrap;
}

/* Główny blok merytoryczny - Nagłówek sekcji */
.agenda-table > tbody > tr.agenda-main-block-header {
    background-color: #e6f0eb;
}

.agenda-table > tbody > tr.agenda-main-block-header > td {
    border-top: 2px solid #006432;
    border-bottom: 1px solid #c2ded0;
    color: #004d26;
}

/* Badge dla głównego bloku */
.agenda-table .agenda-badge {
    background-color: #006432;
    font-size: 12px;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Wiersze z pojedynczymi prelekcjami (pod-panele) */
.agenda-table > tbody > tr.agenda-sub-panel {
    background-color: #f4f8f6;
}

.agenda-table > tbody > tr.agenda-sub-panel > td {
    border-top: none;
}

/* Czas w pod-panelu */
.agenda-table .agenda-sub-time {
    padding: 12px 15px 12px 25px !important;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: #556b60;
}

/* Treść prelekcji z zielonym marginesem po lewej */
.agenda-table .agenda-sub-content {
    padding: 12px 15px !important;
    border-left: 4px solid #006432;
}

.agenda-table .agenda-sub-title {
    margin: 0 0 5px 0;
    font-weight: bold;
    color: #111111;
}

.agenda-table .agenda-sub-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #555555;
}

/* Zamknięcie dolne pod-panelu */
.agenda-table tr.agenda-sub-panel-last > td {
    border-bottom: 1px solid #c2ded0;
}

/* Czyszczenie obramowania dla elementu zaraz po pod-panelach */
.agenda-table tr.agenda-after-sub > td {
    border-top: none;
}