/*
 * Step Up plugin – front‑end styling
 *
 * This stylesheet provides a clean and fresh look for the Step Up wizard and landing sections. Feel free to adjust colours
 * to match your theme. The primary accent colour is a soft orange; secondary elements use neutral greys.
 */

.step-up-start {
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fafafa;
}

.step-up-heading {
    margin-top: 0;
    font-size: 2rem;
    color: #333;
}

.step-up-subheading {
    color: #666;
    margin-bottom: 1.5rem;
}

.step-up-button {
    display: inline-block;
    background-color: #ff8c42;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.step-up-button:hover {
    background-color: #ff7a24;
}

.step-up-form-wrapper {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#step-up-form h2 {
    margin-top: 0;
    color: #333;
}

#step-up-form fieldset {
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

#step-up-form fieldset legend {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #444;
}

#step-up-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #333;
}

#step-up-form input[type="text"],
#step-up-form input[type="number"],
#step-up-form select,
#step-up-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

#step-up-form textarea {
    resize: vertical;
}

#step-up-form input[type="file"] {
    margin-bottom: 0.5rem;
}

.step-up-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.step-up-checkbox {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.step-up-checkbox input {
    margin-right: 0.5rem;
}

.step-up-submit {
    display: inline-block;
    background-color: #ff8c42;
    color: #fff;
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.step-up-submit:hover {
    background-color: #ff7a24;
}

#step-up-result {
    margin-top: 2rem;
    background-color: #fdf8f3;
    border: 1px solid #ffedd4;
    padding: 1rem;
    border-radius: 6px;
}

#step-up-result h3 {
    margin-top: 0;
    color: #e76f51;
}

#step-up-result h4 {
    margin-bottom: 0.4rem;
    color: #e76f51;
}

#step-up-result ul {
    list-style: disc;
    padding-left: 1.2rem;
}

#step-up-result button.delete-photo {
    background-color: #e4572e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 1rem;
}

#step-up-result button.delete-photo:hover {
    background-color: #d04425;
}