.filepond--credits {
    display: none !important;
}

.cover-radio {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    z-index: 20;
    background-color: rgba(128, 128, 128, 0.5);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, box-shadow 0.2s;
}

.cover-radio input[type="radio"] {
    margin: 0;
    cursor: pointer;
    display: none;
}

.cover-radio label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.cover-radio input[type="radio"]:checked + label {
    background-color: rgba(34, 197, 94, 0.5);
    color: white;
    border-radius: 4px;
    padding: 2px 8px;
}

.cover-radio input[type="radio"]:not(:checked) + label {
    background-color: rgba(128,128,128,0.5);
    color: white;
    border-radius: 4px;
    padding: 2px 8px;
}

.cover-radio:hover {
    background: rgba(34, 197, 94, 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}