/* Ustawienia ogólne */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 40px;
    background-color: #121212;
    color: #f0f0f0;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}
.breadcrumbs a {
    color: #f0f0f0;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Nagłówki */
h1, h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Formularz wyboru katalogu */
form {
    text-align: center;
    margin-bottom: 40px;
}
select, button {
    padding: 10px 15px;
    margin: 5px;
    font-size: 16px;
    background: #1f1f1f;
    color: #f0f0f0;
    border: 1px solid #555;
    border-radius: 6px;
    transition: background 0.3s, border 0.3s;
}
select:hover, button:hover {
    background: #333;
    border-color: #777;
}

/* Kontener grid dla tabel */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    justify-items: center;
    align-items: start;
}

/* Style tabel */
table {
    width: 100%;
    background: #1e1e1e;
    border-collapse: collapse;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}
th, td {
    padding: 15px;
    border-bottom: 1px solid #333;
    text-align: center;
    font-size: 15px;
}
th {
    background-color: #2c2c2c;
    color: #e0e0e0;
    font-weight: 600;
}
tr:hover {
    background-color: #2a2a2a;
}

/* Odtwarzacz wideo */
video {
    max-width: 200px;
    height: auto;
    border: 1px solid #333;
    border-radius: 6px;
}

/* Przyciski */
a.button {
    display: inline-block;
    padding: 10px 20px;
    background: #1f1f1f;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #555;
    border-radius: 6px;
    transition: background 0.3s, border 0.3s;
}
a.button:hover {
    background: #333;
    border-color: #777;
}

/* Stopka */
.footer {
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

.thumbnail {
    max-width: 200px;
    height: auto;
    border: 1px solid #333;
    border-radius: 6px;
}
