body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: #333;
}
.container {
    width: 90%;
    margin: 0 auto;
    background: transparent;
    padding: 20px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
h1 {
    text-align: center;
    color: #1B2A41;
    font-size: 1.5em;
    padding-bottom: 10px;
    margin-bottom: 0;
    position: relative;
}
h1::after, h1::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
}
h1::before {
    background-color: #007bff;
    bottom: 5px;
}
h1::after {
    background-color: #ff69b4;
    bottom: 3px;
}
.aktualnosci {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    white-space: nowrap;
}
.aktualnosci th, .aktualnosci td {
    border: 1px solid rgba(221, 221, 221, 0.3);
    padding: 8px;
    text-align: left;
}
.aktualnosci th {
    background-color: rgba(242, 242, 242, 0.3);
    font-weight: bold;
}
.aktualnosci tr:nth-child(even) {
    background-color: rgba(249, 249, 249, 0.2);
}
.aktualnosci tr:hover {
    background-color: rgba(200, 200, 200, 0.4);
}
.lp {
    width: 5%;
    font-weight: bold;
}
.data {
    width: 25%;
}
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .aktualnosci, .aktualnosci thead, .aktualnosci tbody, .aktualnosci th, .aktualnosci td, .aktualnosci tr {
        display: block;
    }
    .aktualnosci thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .aktualnosci tr {
        margin-bottom: 15px;
        border: 1px solid rgba(221, 221, 221, 0.3);
    }
    .aktualnosci td {
        border: none;
        border-bottom: 1px solid rgba(238, 238, 238, 0.3);
        position: relative;
        padding-left: 50%;
        text-align: right;
    }
    .aktualnosci td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
    .lp {
        font-weight: normal;
    }
}
/* Style dla nagłówków h1 tylko w sekcji zaślubionych */
.zaslubieni h1::before {
    background-color: #FFD700; /* Złoty */
}

.zaslubieni h1::after {
    background-color: #C0C0C0; /* Srebrny */

}