/* Simple, clean styles for the custom paragraph upload UI */
.wptt-upload-wrap {
    max-width: 1000px;
    margin: 100px auto;
    padding: 18px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial
}

.wptt-upload-header {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px
}

.wptt-note {
    color: #6b7280;
    font-size: 13px
}

.wptt-field {
    margin-top: 12px
}

.wptt-input,
.wptt-select,
.wptt-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #111;
    background: #fbfbfd;
    box-sizing: border-box
}

.wptt-textarea {
    min-height: 180px;
    resize: vertical
}

.wptt-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px
}

.wptt-alert {
    color: #b91c1c;
    font-size: 14px;
    min-height: 20px
}

.wptt-btn {
    background: #ef4444;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600
}

.wptt-btn[disabled] {
    opacity: 0.6;
    cursor: default
}

.wptt-back {
    color: #374151;
    text-decoration: none;
    font-weight: 600
}

.wptt-meta {
    font-size: 13px;
    color: #6b7280
}

.wptt-counter {
    font-size: 13px;
    color: #6b7280
}

.wptt-success {
    color: #065f46
}

.wptt-preview {
    margin-top: 14px;
    padding: 12px;
    border-radius: 6px;
    background: #fafafa;
    border: 1px dashed #e5e7eb;
    color: #111
}