body {
    font-family: sans-serif;
    padding: 0;
    
	background-color: #131417;
	width: 100%;
	height: 100vh;
}

#header {
    width: 100%;
    background-color: #28282a;
    padding: 5px;
    height: 60px;
    position: relative;
}

#logo {
    float: left;
    font-weight: bold;
    font-size: 120%;
    padding: 3px 5px;
    color: white;
}

#logoImg {
    width: 68%;
    height: 68%;
}

/* ✅ FLEXBOX FIX for Proper Alignment */
#buttonContainer {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ✅ pushes download to right */
    width: 85%;
    margin: 0;
    position: relative;
    /* top: 10px; */
}

/* ✅ Group for left buttons (HTML, CSS, JS, Output, Reset) */
#leftButtons {
    display: flex;
    gap: 10px;
    align-items: center;
}
#downloads{
	margin-left: 100;
	display: flex;
    align-items:center;


}


.toggleButton {
    border: none;
    padding: 13px;
    font-size: 105%;
    cursor: pointer;
    background-color: #424242;
    color: white;
}

#html {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#output {
    border-right: 1px solid grey;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.active {
    background-color: #212121;
    color: white;
    border-top: 2px rgb(255, 255, 136) solid;
    border-bottom: 2px rgb(255, 255, 136) solid;
}

.highlightedButton {
    background-color: grey;
}

/* ✅ Download Icon Fixed */
#imgdwn {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: border 0.2s ease;
}

#imgdwn:hover {
    border: 2px rgb(255, 255, 136) solid;
    border-radius: 8px;
}

textarea {
    resize: none;
    border-top: none;
    border-color: grey;
}

#htmlPanel,
#cssPanel,
#javascriptPanel {
    background-color: #131417;
    color: white;
    font-size: 15px;
	margin-top: 15px;
}

.panel {
    float: left;
    width: 50%;
    border-width: 2px;
    border-left: none;
    border-color: white;
}

iframe {
    border: none;
}

.hidden {
    display: none;
}

/* ✅ Reset Button Style */
#reset {
    background-color: #424242;
    color: white;
    font-size: 105%;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, border 0.2s ease;
}

#reset:hover {
    background-color: grey;
    border: 2px solid rgb(255, 255, 136);
}

/* //boiler plate */
#insertBoilerplate {
    background-color: #424242;
    color: white;
    font-size: 105%;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, border 0.2s ease;
    margin-left: 10px;
}
#insertBoilerplate:hover {
    background-color: grey;
    border: 2px solid rgb(255, 255, 136);
}
