.drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: .2s;
}

.drop-zone.active {
    background: #f0f7ff;
    border-color: #0d6efd;
}

.file-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.file-list li {
    padding: 6px 0;
    font-size: 14px;
}

#fileList {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

#fileList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: move;
}

.submit-btn {
    min-width: 160px;
}

#loader {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.progress-wrapper {
    margin-top: 20px;
}

.progress {
    height: 10px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #0d6efd;
    width: 0%;
    color: #fff;
    font-size: 11px;
    text-align: center;
    transition: width 0.2s ease;
}

.progress-text {
    font-size: 13px;
    margin-top: 6px;
    color: #555;
}

.tool-title {
    font-size: 28px;
    font-weight: 600;
}

.tool-subtitle {
    color: #555;
    margin-bottom: 20px;
}

.trust-badges {
    margin-top: 15px;
    font-size: 13px;
    color: #444;
    text-align: center;
}

.remove-btn {
    color: red;
    cursor: pointer;
    font-weight: bold;
}


.upload-hint {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

.tool-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}