/* Ergaenzungen zu Bootstrap 5 */

.thumb {
    width: 70px;
    height: auto;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
}
.no-thumb {
    font-size: 12px;
    color: #adb5bd;
}

.qty-input {
    width: 80px;
}

.dropzone {
    border: 2px dashed #adb5bd;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
.dropzone.dragover {
    border-color: #0d6efd;
    background: #eef5ff;
}
.dropzone .dz-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 8px;
}

.file-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
}
.file-row .file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-card {
    max-width: 380px;
    margin: 60px auto;
}
