body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 98%;
    margin: 0 auto;
    margin-top: 2rem;
    background:rgb(216, 216, 216);
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}
.double-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 2;
}
input, select {
    margin: 5px;
    padding: 5px;
    font-size: 16px;
    /* width: 90%; */
}
select  {
    cursor: pointer;
}
canvas {
    border: none;
    max-width: 100%;
    background: white;
}
button {
    margin: 29px 5px 0px 5px;
    padding: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: white;
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 3px;
    font-weight: bold;
}
button:hover {
    background: #007bff;
    color: white;
}
button svg {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}
.ribbon-border-top {
    height: 5px;
    background: white;
    width: 100%;
    border-bottom: 5px solid #DAA520;
}
.ribbon-border-bottom {
    height: 5px;
    background: white;
    width: 100%;
    border-top: 5px solid #DAA520;
}
.preview {
    padding: 5px;
}
label {
    margin: 5px 0px 0px 10px;
}