body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

h1,
h2,
h3 {
    margin: 3;
}

h1 {
    color: #ffffff;
}

h2 {
    color: #aaaaaa;
}

h3 {
    color: #ff0000;
}

b {
    font-weight: bold;
}

#sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    gap: 10px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 28%;
    overflow-y: hidden;
    overflow-y: auto;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

#settingsContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
}


#previewCanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 69%;
    height: 80vh;
}

#outputField {
    background-color: #2c2c2c;
    color: #e0e0e0;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 69%;
    height: 19vh;
    resize: none;
}

input[type="number"],
input[type="file"],
button {
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #333;
    color: #e0e0e0;
}

input[type="number"] {
    width: 100px;
}

input[type="file"] {
    width: 80%;
    padding: 10px;
}

input[type="checkbox"] {
    transition: all 0.2s;
    align-self: center;
    width: 20px;
    height: 20px;
    accent-color: #007BFF;
    
}

input[type="checkbox"]:hover {
    transition: all 0.2s;
    transform: scale(1.25);
    cursor: pointer;
}

button {
    color: white;
    background-color: #007BFF;
    padding: 10px 20px;
    width: 80%;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s;
}

button:hover {
    transform: scale(1.05);
    background-color: #0056b3;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    width: 95%;
    border: 1px solid #525252;
}

label {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    padding-top: 5px;

}