/* List layout */
.filebird-list {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.filebird-list li {
    margin: 0.5em 0;
    font-size: 1rem;
}

.filebird-list a {
    text-decoration: none;
    color: #0073aa;
}

.filebird-list a:hover {
    text-decoration: underline;
    color: #005177;
}

/* Grid layout */
.filebird-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1em 0;
}

.filebird-grid-item {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: center;
    background: #f9f9f9;
    border-radius: 5px;
    transition: box-shadow 0.2s ease;
}

.filebird-grid-item:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.filebird-grid-item a {
    color: #333;
    text-decoration: none;
    display: block;
}

.filebird-grid-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5em;
}
