body {
    margin: 0;
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
}

input {
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 15px;
    padding: 10px;
    border-radius: 5px;
}

.inputClass {
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 15px;
    padding: 10px;
    border-radius: 5px;
}


details {
    width: 100%;
}

.backgroundImageHolder {
    top: 0;
}

.backgroundImage {
    position: relative;
}

summary {
    user-select: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.edLink {
    background-color: #999999;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
}

input[type=checkbox] {
    width: 50px;
    height: 50px;
}

.edLinkImage {
    width: auto;
}

.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 90%;
}

#editor {
    display:flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-width: 0 2px 0 0; /* top right bottom left */
    border-style: solid;
    border-color: #000000;
    width: 30%;
    height: 100%;
    color: #000000;
    overflow-y: scroll;
}

.edLinkControls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.wide {
    width: 90%;
    height: 50px;
    background-color: #999999;
    border-radius: 5px;
    border: none;
    margin: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.wide:hover {
    background-color: #cccccc;
}

#preview {
    overflow-x: hidden;
    overflow-y: scroll;
    width: 70%;
    height: 100%;
}

#socialLinks {
    width: 100%;
}

.red {
    background-color: #ad0000;
}

.green {
    color: #ffffff;
    background-color: #3a6a3a;
}

#save {
    margin-top: 25px;
}