/*
Theme Name: VfL
Theme URI: https://example.com/
Author: Oliver
Description: WordPress-Theme im Stil von vfl-info.de
Version: 1.0
Text Domain: vfl-info
*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #e5e5e5;
    color: #222;
}

/* Layout */

#wrapper {
    width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

#header {
    background: #0063af;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .site-title {
    font-size: 24px;
    font-weight: bold;
}

#header .site-description {
    font-size: 13px;
    opacity: 0.8;
}

#header img.logo {
    height: 60px;
    margin-right: 15px;
}

/* Navigation */

#nav {
    background: #0060a0;
}

#nav ul {
    list-style: none;
    margin: 0;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
}

#nav li {
    margin: 0;
}

#nav a {
    display: block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

#nav a:hover,
#nav .current-menu-item > a,
#nav .current_page_item > a {
    background: #004f85;
}

/* Content + Sidebar */

#content-wrapper {
    display: flex;
    padding: 15px 20px 25px;
}

#content {
    flex: 3;
    margin-right: 20px;
}

#sidebar {
    flex: 1;
}

/* Beiträge / Seiten */

.post,
.page {
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.post:last-child,
.page:last-child {
    border-bottom: none;
}

.post h2,
.page h1 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #0063af;
}

.post-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.post-content {
    font-size: 14px;
    line-height: 1.5;
}

/* Sidebar */

#sidebar h3 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #0063af;
}

#sidebar .widget {
    margin-bottom: 20px;
    font-size: 13px;
}

/* Footer */

#footer {
    background: #0063af;
    color: #fff;
    font-size: 12px;
    padding: 10px 20px;
    text-align: center;
}

/* Links */

a {
    color: #0063af;
}

a:hover {
    color: #0060a0;
}

/* Tabellen / Listen im Content */

.post-content ul,
.post-content ol {
    margin: 0 0 10px 20px;
}

.post-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

.post-content table th,
.post-content table td {
    border: 1px solid #ccc;
    padding: 5px 8px;
    font-size: 13px;
}

.infinite-scroll .pagination {
    display: none;
}

.infinity-end {
    text-align: center;
    padding: 20px;
    color: #777;
}
