﻿body {
    background: linear-gradient(135deg, rgba(1,45,44,1) 0%, rgba(0,77,64,1) 100%);
    background-attachment: fixed; /* Prevents repeating on scroll */
    background-repeat: no-repeat; /* Prevents tiling */
    background-size: cover; /* Ensures it covers the entire viewport */
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
}

.main-container {
    margin-left: 10px;
    margin-right: 10px;
}

.admin-section {
    font-size:24px;
}

.toolbar {
    display:flex;
    background-color: #000;
    padding:10px;
    margin:0;
    text-transform:uppercase;
    gap:10px;
    align-items:center;
}

.toolbar a {
    text-decoration:none;
    color:white;
}

#wizard {
    max-width: 600px;
    margin: 0 auto;
}

.step-indicator {
    display: inline-block;
    margin-right: 10px;
    padding: 4px 8px;
    border-bottom: 2px solid transparent;
}

    .step-indicator.active {
        border-color: blue;
        font-weight: bold;
    }

#wizard-controls {
    margin-top: 20px;
}