/* Frontend Styles for File Publish Manager */

.fpm-downloads-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fpm-download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.fpm-download-info {
    flex: 1;
}

.fpm-download-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.fpm-download-desc {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.fpm-download-action {
    margin-left: 20px;
}

.fpm-download-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.fpm-download-btn:hover {
    background-color: #005177;
    color: #fff;
}

.fpm-download-error {
    color: #b32d2e;
    font-weight: bold;
}

/* Filter Styles */
.fpm-filters-container {
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.fpm-filters-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fpm-filters-list li {
    margin: 0;
}

.fpm-filters-list a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fpm-filters-list a:hover {
    background-color: #e2e2e2;
}

.fpm-filters-list a.active {
    background-color: #0073aa;
    color: #fff;
    font-weight: bold;
}
