.ff-harburg-frontend {
    font-family: sans-serif;
    max-width: 100%;
}

/* Filter Bar */
.ff-filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}

#ff-live-search {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#ff-cat-filter {
    padding: 8px;
    min-width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Categories */
.ff-frontend-category {
    margin-bottom: 30px;
}

.ff-frontend-category h3 {
    border-bottom: 2px solid #b32d2e; /* Feuerwehr Rot */
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.4em;
}

/* File List */
.ff-file-list {
    display: grid;
    gap: 10px;
}

.ff-file-entry {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    transition: background 0.2s;
    border-left: 4px solid #ddd;
}

.ff-file-entry:hover {
    background: #fafafa;
    border-left-color: #b32d2e;
}

.ff-file-icon {
    margin-right: 15px;
    font-size: 24px; /* Icons größer */
    width: 30px;
    text-align: center;
}

/* Icon Colors & Styles */
.ff-file-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Spezifische Farben für Dateitypen */
.ff-file-icon .dashicons-pdf { color: #d63638; } /* PDF Rot */
.ff-file-icon .dashicons-media-spreadsheet { color: #1d6f42; } /* Excel Grün */
.ff-file-icon .dashicons-media-document { color: #2b5797; } /* Word Blau */
.ff-file-icon .dashicons-media-interactive { color: #d24726; } /* PowerPoint Orange */
.ff-file-icon .dashicons-media-archive { color: #f2c94c; } /* Zip Gelb */
.ff-file-icon .dashicons-format-image { color: #828282; } /* Bilder Grau */
.ff-file-icon .dashicons-media-default { color: #666; }

.ff-file-details {
    flex-grow: 1;
}

.ff-file-link {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.ff-file-download a {
    display: inline-block;
    padding: 6px 12px;
    background: #eee;
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
    border-radius: 3px;
}

.ff-file-download a:hover {
    background: #ddd;
}

/* Responsive */
@media (max-width: 600px) {
    .ff-filter-bar {
        flex-direction: column;
    }
    
    #ff-cat-filter {
        width: 100%;
    }
}