/* Mobile Responsive */
.mobile-cards {
    display: none;
}

@media (max-width: 768px) {
    .header-logo img {
        max-height: 100px;
    }
    
    .header-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .last-update,
    #langSwitch {
        position: static;
    }
	
	.container {
        padding: 0.5rem;
    }
	
	.table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;  /* Smooth scrolling iOS */
    }
    
    .data-table {
        min-width: 1000px;  /* Erzwingt Scroll */
    }
}

@media (max-width: 480px) {
     .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .data-table {
        min-width: 900px;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.4rem 0.3rem;
        font-size: 0.75rem;
    }
	
	.container {
        padding: 0.25rem;
    }

    .mobile-cards {
        display: block;
    }

    .mobile-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        margin-bottom: 0.5rem;
        padding: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .mobile-card:hover {
        background-color: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .mobile-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #eee;
    }

    .mobile-card-title {
        font-weight: 600;
        color: var(--primary-color);
    }

    .mobile-card-date {
        font-size: 0.8rem;
        color: #666;
    }

    .mobile-card-body {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .mobile-card-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.3rem;
    }

    .mobile-label {
        font-weight: 500;
        color: #555;
    }

    .mobile-card-footer {
        margin-top: 0.5rem;
        text-align: center;
        color: #666;
        font-style: italic;
        font-size: 0.75rem;
        border-top: 1px solid #eee;
        padding-top: 0.5rem;
    }
}