body {
    font-family: Georgia, serif;
    font-size: 18px;
}
.editor-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 5fr;
    height: 98vh;
}
.page-settings {
    overflow-y: auto;
}
.tokens-list {
    overflow-y: auto;
}
.preview-wrapper {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #cccccc;
    text-align:center;
}
.scale-controls {
    position: absolute;
    display: block;
    top: 10px;
    left: 36%;
}
.scale-button-img {
    width: 100%;
}
.preview {
    position: relative;
    width: 100%;
    margin: auto;
    display: inline-block;
}
.canvas {
    background-color: white;
    width: 100%;
}
.card-img {
    width: 100px;
}
.card-delete-img {
    width: 100%;
}
.card-move-img {
    width: 15px;
}
.loading-background {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(150, 150, 150, 0.5);
    display: none;
    align-items: center;
    
}
.loading-animation {
    margin: auto;
    border: 10px solid #EAF0F6;
    border-radius: 50%;
    border-top: 10px solid #009607;
    width: 100px;
    height: 100px;
    animation: spinner 1s linear infinite;
}
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.badges-block {
    position:absolute;
    bottom: 0;
}
.badge {
    height: 18px;
    width: auto;
}
.dragndrop-zone.dragstart {
    opacity: 0.5;
}
.dragndrop-zone.dragover {
    opacity: 1;
}
.dragndrop-zone {
    opacity: 0;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: red;
    background-color: rgba(150, 150, 150, 0.25);
}
ul {
    padding: 0;
}
ul.sortable {
    display: block;
    list-style: none;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    margin: 20px 0;
    padding: 5px;
}
    
li {
    display: table;
    width: 90%;
    margin: 1px; 
    padding: 10px;
    border: solid 1px gray;
    border-radius: 10px;
    cursor: move;
    background: #eeeeee;
}
    
li:hover {
    background: #ffffe0;
}
li.active {
    background: #ccc;
}
li.dragging {
    background: #e0ffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    opacity: 0.5;
}
table {
    width: 100%;
}
input[type=text], input[type=number], select, button {
    height: 24px;
    border: solid 1px gray;
    padding-left: 10px;
    border-radius: 5px;
    width: 90%;
    font-family: Georgia, serif;
    font-size: 16px;
    background-color: white;
}
button {
    background-color: #eeeeee;
    width: auto;
    height: 30px;
    padding: 5px;
}
button:hover {
    background-color: #dddddd;
}
button:active {
    background-color: #cccccc;
}
#locale {
    width: auto;
    padding: 0;
}
.scale-button {
    display: flex;
    width: 40px;
    height: 40px;
}
.card-delete {
    height: 50px;
    width: 50px;
}
#export-pdf {
    height: 40px;
    margin-top: 10px;
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
    border-color: #880000;
    border-width: 2px;
}
