body {
    background: #0b0b0f;
}

.aiode-form-wrapper {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    font-family: sans-serif;
}

/* PROGRESS */
.aiode-progress {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.step {
    width: 32px;
    height: 32px;
    background: #2a2a2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active {
    background: linear-gradient(45deg, #7a00ff, #a100ff);
}

.line {
    flex: 1;
    height: 3px;
    background: #444;
}

/* STEPS */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

h2 {
    margin-bottom: 10px;
}

p {
    color: #aaa;
    margin-bottom: 20px;
}

/* INPUTS */
input, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

/* BUTTONS */
button {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.next, button[type="submit"] {
    background: linear-gradient(45deg, #7a00ff, #a100ff);
    color: #fff;
    width: 100%;
}

.back {
    border: 1px solid #7a00ff;
    background: transparent;
    color: #fff;
}

.btn-row {
    display: flex;
    gap: 10px;
}

/* RADIO */
.radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.radio-group label {
    flex: 1;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
}

.radio-group label.active {
    border-color: #7a00ff;
}

/* UPLOAD */
.upload-box {
    border: 2px dashed #444;
    padding: 20px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.upload-box.is-dragover {
    border-color: #7a00ff;
    background: rgba(122, 0, 255, 0.08);
}

.upload-box.error {
    border-color: #ff4d4f;
}

.aiode-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.upload-box-hint {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    font-size: 14px;
}

.aiode-choose-files {
    width: auto;
    min-width: 140px;
}

.aiode-file-list {
    display: none;
    list-style: none;
    margin: 12px 0 15px;
    padding: 0;
}

.aiode-file-list.aiode-file-list--has-items {
    display: block !important;
}

.aiode-file-list.error {
    outline: 1px solid #ff4d4f;
    outline-offset: 2px;
    border-radius: 8px;
}

.aiode-file-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: #16161c;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 13px;
}

.aiode-file-name {
    color: #e0e0e0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.aiode-remove-file {
    flex-shrink: 0;
    padding: 6px 14px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid #ff4d4f;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 12px;
    width: auto;
}

.aiode-remove-file:hover {
    background: rgba(255, 77, 79, 0.15);
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #ccc;
}

input.error, textarea.error {
    border: 1px solid #ff4d4f;
}

.error-text {
    color: #ff4d4f;
    font-size: 12px;
    margin-bottom: 10px;
}
.aiode-success {
    background: #1a1a1f;
    border: 1px solid #7a00ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #7a00ff;
}