/* Minimales CSS für byti.ai */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Fullscreen Image Homepage */
.fullscreen-image {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay-nav {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.overlay-nav a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
    font-weight: 500;
}

.overlay-nav a:hover {
    text-decoration: underline;
}

/* Einfache Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
}

.legal-page h1 {
    margin-bottom: 20px;
    color: #0066CC;
}

.legal-page h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page a {
    color: #0066CC;
}

.footer-nav {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
}

.footer-nav a {
    color: #0066CC;
    text-decoration: none;
    padding: 0 10px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Tabellen Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
}

th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

/* Provider Table spezifisch */
.provider-table {
    margin: 20px 0;
}

.provider-table table {
    font-size: 14px;
}

.provider-table a {
    color: #0066CC;
    text-decoration: none;
    font-weight: 500;
}

.provider-table a:hover {
    text-decoration: underline;
}

/* Listen Styling */
ul, ol {
    margin: 15px 0;
    padding-left: 30px;
    line-height: 1.8;
}

ul li, ol li {
    margin: 8px 0;
    padding-left: 5px;
}

ul {
    list-style-type: disc;
}

ul ul {
    list-style-type: circle;
    margin: 5px 0;
}

ol {
    list-style-type: decimal;
}

/* Nested Listen */
.legal-page ul li ul,
.legal-page ol li ol {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Info-Boxen */
.info-box, .warning-box, .success-box {
    padding: 15px 20px;
    margin: 20px 0;
    border-left: 4px solid;
    border-radius: 4px;
    background: #f8f9fa;
}

.info-box {
    border-left-color: #0066CC;
    background: #e7f3ff;
}

.warning-box {
    border-left-color: #ff9800;
    background: #fff3e0;
}

.success-box {
    border-left-color: #4caf50;
    background: #e8f5e9;
}

.info-box strong,
.warning-box strong,
.success-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

.badge-success {
    background: #4caf50;
    color: white;
}

.badge-warning {
    background: #ff9800;
    color: white;
}

.badge-info {
    background: #2196f3;
    color: white;
}

/* Service List Grid */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.service-item {
    padding: 10px 15px;
    background: #f0f7ff;
    border-left: 3px solid #0066CC;
    border-radius: 4px;
    font-size: 14px;
}

/* Last Updated Meta */
.last-updated {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

/* Responsive Tabellen */
@media screen and (max-width: 768px) {
    table {
        font-size: 12px;
    }

    th, td {
        padding: 8px 10px;
    }

    .provider-table table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
