* {
    font-family: "Century Gothic";
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(37, 37, 37);
    color: white;
}

.main-content {
    background-color: #333;
    padding: 20px 5vw;
    margin-top: 30px;
}

.labels{
    display: flex;
}

.labels p{
    width: 200px;
    text-indent: 20px;
    margin-right: 20px;
}

.segment-div{
    margin-top: 10px;
    width: 100%;
    display: flex;
}

input{
    height: 25px;
    border: 0;
    background-color: #444;
    color: white;
    text-indent: 5px;
}

input:focus-within {
    outline: none;
}

.segment-name-input{
    width: 200px;
    margin-right: 20px;
}

.segment-locales-input{
    display: flex;
    flex-grow: 1;
    font-size: 10px;
}

.deleteBtn{
    margin: auto 0 auto 10px;
    height: 16px;
    width: 16px;
    border: 0;
    background-color: #444;
    color: white;
}

.deleteBtn:hover{
    background-color: #999;
    color: black;
}





#btnDiv{
    display: flex;
    align-items: center;
}

#btnDiv p{
    font-size: 12px;
    margin-top: 7px;
}

#addBtn{
    background-color: #777;
    border: 0;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 25px;
    margin: 10px 5px 0 55px;
    line-height: 50px;
    box-sizing: border-box;
}

#addBtn:hover{
    background-color: #999;
    color: black;
}

#addBtn:active{
    background-color: #777;
}

#multiply-input{
    width: 40px;
    height: 25px;
    text-indent: 10px;
    margin: 10px 0 0 5px;
}

#workflow-div{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#workflow-div p{
    margin-left: 20px;
    margin-right: 20px;
}

#wkf-lcls{
    background-color: #444;
    color: white;
    border: 0;
    max-width: 1200px;
    min-width: 200px;
    width: 600px;
    min-height: 25px;
    max-height: 100px;
    height: 25px;
}

#copyWkfBtn{
    background-color: #555;
    border: 0;
    margin-left: 20px;
    height: 25px;
    color: white;
    width: 100px;
}

#copyWkfBtn:hover{
    background-color: #999;
    color: black;
}


#copyWkfBtn:active{
    background-color: #777;
}






.segment-name-output{
    width: 200px;
    margin-right: 20px;
}

.segment-locales-output{
    display: flex;
    flex-grow: 1;
    font-size: 10px;
}

.copyBtn{
    margin-left: 5px;
    height: 25px;
    border: 0;
    background-color: #555;
    color: white;
    width: 100px;
}

.copyBtn:hover{
    background-color: #999;
    color: black;
}