@font-face {
    font-family: Hershey-Futura;
    src: url("font/Hershey-Noailles-Futura-Simplex-Bold.woff");
}

@font-face {
    font-family: Hershey-Times;
    src: url("font/Hershey-Noailles-Times-Simplex-Bold.woff");
}

body {
    margin: 0;
    padding: 0;
    font-family: Hershey-Futura;
    overflow: hidden;
    font-size: 18px;
}

#main-container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

#canvas-container {
    flex: 1;
    position: relative;
    overflow: hidden; /* Prevent any overflow */
}

#controls {
    width: 350px;
    padding: 20px;
    background-color: #F2F2F2;
    /* border-left: 1.5px solid black; */
    overflow-y: auto;
    height: 100vh;
    box-sizing: border-box;
}

.section {
    padding-bottom: 10px;
    padding-top: 10px;

}

.section-title {
    font-weight: bold;
    font-size: 80px;
    font-family: Hershey-Times;
    text-align: center;
}

.control-group {
    margin: 10px 0;
}

label {
    display: block;
    margin-bottom:15px;
    margin-top: 25px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 25px;
}

input {
    width: calc(100% - 20px);
    margin: 5px 10px;
    border-radius: 5em;
    background-color: #FFFF00;
    border: none;
    height: 30px;
}

.label-file {
    display: inline-block;
    width: calc(100% - 20px);
    padding: 10px 0px 10px 0px;
    margin: 10px;
    margin-top: 30px;
    background-color: lightgray;
    color: black;
    /* border: solid black; */
    font-size: 20px;
    cursor: pointer;
    /* border-radius: 5px; */
    text-align: center;
    /* box-shadow: 5px 5px 20px black; */
}

input[type="file"] {
    display: none;
}

input[type="range"] {
    -webkit-appearance: none;
    width: calc(100% - 20px);
    height: 2.5px;
    background: #04B45F;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: #04B45F;
    cursor: pointer;
    border-radius: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
}

input[type="color"] {
    -webkit-appearance: none;
    border: none;
    width: calc(100% - 20px);
    height: 40px;
    background: none;
    cursor: pointer;
    border-radius: 0; /* Remove border radius */
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 0; /* Remove border radius for wrapper */
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 0; /* Remove border radius for swatch */
}

.download-btn {
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 10px;
    margin-top: 15px;
    background-color: #F2F2F2;
    color: black;
    border:solid 0px black;
    /* border-radius: 5px; */
    cursor: pointer;
    font-family: Hershey-Futura;
    font-size: 20px;
    box-shadow: 4px 4px 10px grey;
}

.download-btn:hover {
    /* background-color: whitesmoke; */
}

.export-select {
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 8px;
    border-radius: 5em;
    background-color: #FFFF00;
    font-family: Hershey-Futura;
    font-size: 14px;
    border: none;
}

.export-select:focus {
    outline: none;
    border-color: black;
}