body{
    margin: 0px; 
    padding: 0px;
    font-family: sans-serif;
    height: 100vh;
    display:flex;
    flex-direction: column;
}
header{
    height: 60px;
    background-color: rgb(250, 250, 250);
    border: 1px solid #ccc; 
    box-shadow: 0px 2px 4px #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.half{
    width: 40% !important;
    margin: 5px 5px 5px 0px;
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

main{
    flex:1;
    display:flex;
    flex-direction: row; 
}

#options{
    background-color: black;
    width: 300px;
    color: white;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    padding: 10px;
    text-align: left;
}

#options h1{
    margin-top: 3px;
    margin-bottom: 12px;
}

#options h2{
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-top: 40px;
    color: #FDBD03;
}

#options div:nth-child(2) h2{
    margin-top: 10px !important;
}

#options p{
    margin-top: 0px;
    padding-top: 0px;
    line-height: 1.2em;
}

#options select{
    font-size: 1.3rem;
}

#rightSide{
    display: flex;
    flex-direction: column;
    flex:1;
}

#embedCodeArea{
    border-top: 1px solid #999;
    position: relative;
}

#embedCodeArea button{
    position: absolute;
    top: -15px; 
    right: 15px;
    padding: 6px;
    background-color: #FDBD03;
}

#embedCodeArea button:active{
    transform: scale(0.96);
    background-color: #efb403;
}


input[type="checkbox"] {
accent-color: #FDBD03;
}

#options div{
     width: 100%;
}

#options select, #options div{
    width: calc(100% - 10px);
}

#options input[type="text"]{
    width: calc(100% - 17px);
    margin-bottom: 5px;
}

#embedCode{
    display: flex;
    justify-content: center;
    align-items: center;
}

#embedCode{
    padding: 20px 0px;
}

#widget{
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#widget iframe{
    box-shadow: 0px 0px 6px #999;
}


#options{
    flex-direction: column;
    gap: 10px;
}



h1{
    font-size: 2em;
    font-weight: 100;
    letter-spacing: 0.05em;
}

h2{
    font-size: 1.5em;
    font-weight: 100;
}

.hidden{
    display: none;
}

#toolChoice{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#mainTool{
    height: 300px;
    background-color: beige;
    margin: 10px;
    border-radius: 10px;
    padding: 15px;
    transition: height 1s;
}

.minimal{
    height: 60px !important;
}



footer{
    background-color: black;
    color: white;
    font-weight: bold;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}



