body{
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(meme.jpg);
    background-size: 2500px;
    font-size: 14px;
    font-family: "Titillium Web", sans-serif;
    color: #333;
}
.navbar{
    background-color: #333 !important;
}
.page-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 16px;
    margin-bottom: 30px;
}
.form-group {
    margin-top: 10px;
    margin-bottom: 10px;
}
.btn {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 14px;
}
.btn-dark {
    background-color: rgba(215, 215, 215, 0.1) !important;
    border-color: #333 !important;
    color: #333 !important;
}
.table {
    --bs-table-bg: transparent;
    --bs-table-color: #333 !important;
}
tr.table-entry:hover {
    background-color: rgba(255,255,255,0.3);
}
th {
    font-size: large;
    font-weight: normal;
}
.profile-thumbnail {
    position: absolute;
}
.profile-picture {
    width: 90%;
}
.profile-blog-posts {
    padding-left: 15px;
    border-left: 1px dashed #333;
}
ul.posts {
    list-style-type: none;
    padding: 0px;
    margin: 16px 0px 0px 0px;
    border-top: 1px solid #e0e0e0;
}
ul.posts li.post {
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
}
ul.posts li.post:hover {
    background-color: rgba(255,255,255,0.3);
}
div.post-date {
    float: right;
}
div.post-edit, div.post-delete {
    float: right;
    color: #333333;
    margin-right: 10px;
}
.icon-link {
    background: transparent;
    border: transparent;
    color: #333333;
}
div.post-author {
    font-weight: bold;
    color: gray;
}
div.post-author > a {
    text-decoration: none;
}
div.post-thumbnail {
    position: absolute;
}
div.post-content {
    margin-left: 48px;
    min-height: 48px;
}
div.pagination {
    width: 100%;
    text-align: right;
    padding: 0px;
    margin: 0px;
    margin-top: 10px;
}
.paginate {
    background-color: rgba(255,255,255,0.3);
    border: 1px solid #e0e0e0;
    padding: 3px 6px 3px 6px;
    margin-top: 10px;
    text-decoration: none;
    color: black;
}
.paginate:hover {
    background-color: rgba(255,255,255,0.5);
}
.paginate.current {
    background-color: rgba(130, 222, 255, 0.39);
}
.paginate.disabled {
    color: gray;
}

.nav-active {
    font-weight: bold;
    background-color: rgb(65,65,65) !important;
    border-radius: 5px;
}

#year-filter-container {
    position: fixed; /* Fixiert das Element an einer Position relativ zum Viewport */
    top: 250px; /* Abstand vom oberen Rand des Viewports */
    left: 10px; /* Abstand vom linken Rand des Viewports */
    z-index: 1000; /* Stellt sicher, dass es über anderen Elementen liegt */
    background-color: white; /* Hintergrundfarbe, um den Text besser lesbar zu machen */
    padding: 10px; /* Innenabstand für besseren Look */
    border: 1px solid #ccc; /* Optional: Rahmen für das Element */
    border-radius: 5px; /* Optional: Runde Ecken */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Schatteneffekt */
}

/* Allgemeines Styling für das Jahr */
.year-label {
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
}

.year-text {
    font-size: 14px; /* Schriftgröße für alle Jahre */
    font-weight: normal; /* Normale Schrift, wenn nicht ausgewählt */
    color: #333;
    transition: font-weight 0.3s, color 0.3s; /* Weicher Übergang bei Auswahländerung */
}

/* Fettgedruckt und hervorgehoben, wenn ausgewählt */
.year-text.selected {
    font-weight: bold;
    color: #007bff; /* Blaue Farbe für das ausgewählte Jahr */
}

.statistics-header {
    padding-top:50px;
    padding-bottom:20px;
    margin-bottom:0;
    background:white;
    text-align:center;
}

.right-align {
    display: flex;
    justify-content: flex-end;
}