

.upload-audio-card {
    width: 520px;
    text-align: left;
}

    .upload-audio-card h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 6px;
    }

.upload-audio-desc {
    color: var(--text-mute);
    font-size: 14px;
    margin-bottom: 22px;
}

.upload-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px dashed var(--gray-line);
    border-radius: 12px;
    padding: 34px 20px;
    cursor: pointer;
    background: var(--gray-bg);
    transition: border-color .15s ease, background .15s ease;
}

    .upload-dropzone:hover,
    .upload-dropzone.drag-over {
        border-color: var(--navy);
        background: #eef3fc;
    }

.upload-dropzone-icon {
    width: 26px;
    height: 26px;
    color: var(--navy);
}

    .upload-dropzone-icon path {
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.upload-dropzone-label {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
}

.upload-dropzone-hint {
    font-size: 12.5px;
    color: var(--text-mute);
}

.upload-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.upload-file-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--gray-line);
    border-radius: 8px;
    background: #fff;
}

.upload-file-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-file-size {
    font-size: 12.5px;
    color: var(--text-mute);
}

.upload-file-check {
    width: 18px;
    height: 18px;
    color: #2fae63;
    flex-shrink: 0;
}

    .upload-file-check path {
        fill: none;
        stroke: currentColor;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.upload-file-remove {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mute);
    border-radius: 50%;
    flex-shrink: 0;
}

    .upload-file-remove:hover {
        background: var(--gray-bg);
        color: var(--text);
    }

    .upload-file-remove svg {
        width: 14px;
        height: 14px;
    }

        .upload-file-remove svg path {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
        }

.upload-audio-note {
    font-size: 12px;
    color: var(--text-mute);
    margin: 14px 0 24px;
    line-height: 1.5;
}
