body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--neutral-foreground-rest);
    display: none;
}

header {
    
    border-color: var(--neutral-stroke-rest);
    border-width: 0 0 2pt 0;
    border-style: solid;
    margin: 0 0 0.5em 0;
}

.main {
    margin: auto;
    max-width: 900pt;
}

fluent-card {
    padding: 1em;
}

.main h1 {
    text-align: center;
}

.step {
    display: flex;
    flex-direction: row;
    margin: 1em;
}

.stepIcon {
    background-color: var(--accent-fill-rest);
    color: var(--foreground-on-accent-rest);
    border-radius: 2em;
    width: 2em;
    height: 2em;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
    vertical-align: center;
    line-height: 2em;
    margin-right: 1em;
    font-weight: bolder;
    
}

.row {
    display: flex;
    flex-direction: row;
    margin: 1em;
}

.centeralign {
    justify-content: space-around;
    align-items: center;
}

fluent-text-field {
    margin: 1em;
}

#previewLabel {
    display: block;
    font-size: var(--font-ramp-base-font-size);
}

#preview {
    margin: 1em;
    max-width: 300pt;
    aspect-ratio: 1 / 1;
}

.hidden {
    display: none;
}

.cangrab {
    cursor: grab;
}

.grabbing {
    cursor: grabbing;
}

#stepone {
    overflow: hidden;
}

#steptwo {
    overflow: hidden;
    height: 0;
}

fluent-progress-ring {
    height: 50pt;
    width: 50pt;
    margin: 75pt;
}

#error {
    width: 150pt;
    height: 150pt;
    display: none;
}

footer {
    position: sticky;
    bottom: 0;
    padding: 1em;
}

.right {
    justify-content: right;
}

.debug {
    font-size: 0.5em;
    color: var(--neutral-layer-4);
    transition: color 1s, width 1s, height 1s;
    font-family: 'Courier New', Courier, monospace;
    word-break: break-all;
    width: 100pt;
    height: 1em;
    overflow-y: scroll;
}

.debug:hover {
    color: var(--neutral-foreground-rest);
    height: 200pt;
    width: 100%;
}

/* vlad added the stuff below */

        /* Style for the top navigation header */
        .topnav {
            background-color: #333;
            overflow: hidden;
        }
    
        /* Style for the navigation links */
        .topnav a {
            float: left;
            color: #FFFFFF;
            text-align: center;
            padding: 1em 1em;
            text-decoration: none;
        }
    
        /* Style for the active link */
        .topnav a.active {
        text-decoration: underline;
        text-decoration-color: #FFFFFF;
        text-decoration-thickness: .5rem
    ;

        }
    
        /* Change the color of the links on hover */
        .topnav a:hover {
            background-color: #ddd;
            color: #000000;
        }

    /* Media query for mobile devices */
    @media screen and (max-width: 475px) {
      .topnav a {
    display: block;
    width: 100%;
}
    }
        .title {
            font-size: 1em;
            font-weight: bold;
            padding: 1em 2em 1em 2em !important;
            font-weight: bold;
            color: #000000 !important;
            background-color: #FFFFFF;

            ;
        }
