.nc-filedrop-wrap {
    max-width: 600px;
    font-family: inherit;
}
.nc-filedrop-title { margin-bottom: .25rem; }
.nc-filedrop-desc  { margin-bottom: 1rem; color: #555; }

.nc-filedrop-form .nc-fd-row {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.nc-fd-row label { font-weight: 600; font-size: .9rem; }
.nc-fd-row label span { color: #c00; }
.nc-fd-row input[type="text"],
.nc-fd-row input[type="email"] {
    padding: .5rem .75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color .2s;
}
.nc-fd-row input:focus { outline: none; border-color: #0082c9; }

/* Drop zone */
.nc-fd-dropzone {
    border: 2px dashed #b0c9e0;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    background: #f5faff;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.nc-fd-dropzone.nc-fd-dragover {
    background: #e0f0ff;
    border-color: #0082c9;
}
.nc-fd-drop-label { color: #555; font-size: .95rem; }
.nc-fd-browse {
    color: #0082c9;
    cursor: pointer;
    text-decoration: underline;
}

/* File list */
.nc-fd-file-list {
    list-style: none;
    margin: .75rem 0 0;
    padding: 0;
    text-align: left;
}
.nc-fd-file-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem .5rem;
    background: #fff;
    border: 1px solid #dde8f0;
    border-radius: 4px;
    margin-bottom: .3rem;
    font-size: .875rem;
}
.nc-fd-fname { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nc-fd-fsize { color: #888; white-space: nowrap; }
.nc-fd-remove {
    background: none;
    border: none;
    color: #c00;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 .25rem;
}
.nc-fd-remove:hover { color: #900; }

/* Progress */
.nc-fd-progress-wrap {
    margin-bottom: 1rem;
}
.nc-fd-progress-bar {
    background: #dde8f0;
    border-radius: 99px;
    height: 10px;
    overflow: hidden;
}
.nc-fd-progress-fill {
    background: #0082c9;
    height: 100%;
    width: 0%;
    transition: width .2s ease;
    border-radius: 99px;
}
.nc-fd-progress-label {
    display: block;
    margin-top: .3rem;
    font-size: .85rem;
    color: #555;
}

/* Messages */
.nc-fd-message {
    padding: .75rem 1rem;
    border-radius: 6px;
    margin-bottom: .75rem;
    font-size: .95rem;
}
.nc-fd-success { background: #eafaf1; border: 1px solid #a3d9b1; color: #1a7a3a; }
.nc-fd-error   { background: #fef2f2; border: 1px solid #f5c2c2; color: #991b1b; }

/* Submit */
.nc-fd-submit {
    background: #0082c9;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .6rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
}
.nc-fd-submit:hover { background: #006aa3; }
