/* SL-32 — "Upload Design" drag & drop area. */
.sl32-dropzone {
    --sl32-accent: #5a8f3c;      /* lizard green, subtle */
    --sl32-border: #c9ccd1;
    --sl32-bg: #fafbfa;
    margin: 8px 0 4px;
    max-width: 520px;
}

/* The real file input and the multi-file browse input are both driven
   programmatically by the zone; keep them visually hidden but clickable. */
.sl32-dropzone__browse {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    opacity: 0;
}

.sl32-dropzone__zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 26px 18px;
    text-align: center;
    border: 2px dashed var(--sl32-border);
    border-radius: 10px;
    background: var(--sl32-bg);
    color: #4a4f54;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.sl32-dropzone__zone:hover,
.sl32-dropzone__zone:focus {
    border-color: var(--sl32-accent);
    background: #f3f7ef;
    outline: none;
}

.sl32-dropzone__zone.is-dragover {
    border-color: var(--sl32-accent);
    background: #eaf3e2;
    box-shadow: 0 0 0 3px rgba(90, 143, 60, .15) inset;
}

.sl32-dropzone__icon {
    display: block;
    width: 34px;
    height: 34px;
    opacity: .85;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* upload-cloud / arrow icon, stroke = lizard green */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a8f3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 16V4'/%3E%3Cpath d='M8 8l4-4 4 4'/%3E%3Cpath d='M4 16v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2'/%3E%3C/svg%3E");
}

.sl32-dropzone__hint {
    margin: 0;
    line-height: 1.35;
}

.sl32-dropzone__hint strong {
    display: block;
    font-size: 15px;
    color: #2f3438;
}

.sl32-dropzone__hint span {
    font-size: 13px;
    color: #7a8087;
}

.sl32-dropzone__exts {
    margin: 2px 0 0;
    font-size: 12px;
    color: #9097a0;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.sl32-dropzone__list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.sl32-dropzone__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    margin: 0 0 6px;
    background: #fff;
    border: 1px solid #e3e6e9;
    border-radius: 7px;
    font-size: 13px;
}

.sl32-dropzone__name {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #2f3438;
}

.sl32-dropzone__size {
    flex: 0 0 auto;
    color: #9097a0;
    font-size: 12px;
}

.sl32-dropzone__remove {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    line-height: 1;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    background: #f0f1f3;
    color: #6b7178;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.sl32-dropzone__remove:hover {
    background: #e4574c;
    color: #fff;
}

.sl32-dropzone__status {
    margin: 8px 0 0;
    font-size: 12.5px;
    color: var(--sl32-accent);
}

.sl32-dropzone__error {
    margin: 8px 0 0;
    font-size: 12.5px;
    color: #c0392b;
}
