.inno-normen-container {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.inno-normen-filters {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.filter-links a {
    color: #005a87;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.filter-links a:hover {
    background: #e8f4f8;
}

.filter-links a.active {
    background: #005a87;
    color: #fff;
    font-weight: bold;
}

.filter-links .count {
    font-size: 0.8em;
    opacity: 0.8;
}

.filter-links .sep {
    color: #ccc;
}

.inno-norms-search-input {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.inno-norms-search-input:focus {
    outline: none;
    border-color: #005a87;
    box-shadow: 0 0 0 2px rgba(0, 90, 135, 0.1);
}

.inno-normen-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.inno-normen-table th.sortable {
    background-color: #005a87;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.inno-normen-table th.sortable:hover {
    background-color: #004060;
}

.inno-normen-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.inno-normen-table tr.norm-row:hover {
    background-color: #f9fbfc;
}

.inno-normen-table tr.norm-row td a {
    transition: color 0.2s;
}

.inno-normen-table tr.norm-row td a:hover {
    color: #003050;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .inno-normen-table th.sortable, .inno-normen-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .filter-links {
        gap: 5px;
    }
}
