
body {
font-family: 'Inter', sans-serif;
color: #4E3D42;
}
h1 { 
    font-size: 1.7rem;
    margin: 1rem 0;
}
h2 { 
    font-size: 1rem;
    font-weight: normal;
}

a { 
    text-decoration: none;
    color: #444;
}
.container1 {
margin: 0;
text-align: left;
flex-basis: 100%;
flex: 1;

}
#noteInput {
padding: 8px;
margin-bottom: 5px;
margin-top: .5rem;
font-size: 14px;
line-height: 1.3;
min-height: 5rem;
}
#notes {
position: relative; /* needed for absolute notes */
margin-top: 2rem;
height: 60vh;
}
button.add, select {
background: #888;
color: #fff;
padding: .3rem .7rem;
border: 0;
cursor: pointer;
}

button.add:hover {
background: #555;
}

#styleControls {
font-family: 'Inter', sans-serif;
font-size: 14px;
display: flex;
flex-direction: row;
gap: 1rem;
margin: 0 auto;
align-items: center;
justify-content: space-between;
}
#styleControls label {
margin-bottom: .7rem;
text-transform: uppercase;
font-size: 10px;
}
#styleControls select {
margin-left: .2rem;
}
#controls {
display: flex;
flex-direction: row;
gap: 1rem;
align-items: center;
justify-items: center;
}

#bgColor, #fontSize, #pageColor {
border-radius: 3px;
margin: 0 10px;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
padding: 5px 25px 5px 8px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 8px center;
background-size: 12px;
cursor: pointer;
}

.note {
font-size: 16px;
letter-spacing: .5px;
font-family: 'Neucha', sans-serif;
line-height: 1.4;
background: #FFF9BA;
width: 10rem;
height: 7rem;
padding: 35px 10px;
box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
position: absolute;
word-wrap: break-word;
overflow: none;
cursor: grab;
}
.note button {
position: absolute;
top: 5px;
border: none;
background: none;
cursor: pointer;
font-size: 12px;
}
.note .editBtn { right: 25px; }
.note .delBtn { right: 5px; }

.note.activeNote {
outline: 2px solid #ffaa1d;
}

button:focus,
textarea:focus, select:focus {
outline: 1px solid #ccc;
}

.page-wrapper {
    width: 900px;
    margin: 0 auto;
}

.wrapper-2col {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content:space-between;
}

footer {
    font-size: 0.8rem;
    line-height: 1.3;
}

details {
      flex-basis: 100%;
      flex: 1;
}

@media (max-width: 600px) {
#styleControls, #controls { flex-direction: column; }
.page-controls {
display: flex;
align-items: center;
}
.page-wrapper {
    width: 100%;
}
.wrapper-2col {
flex-direction: column;
}
.page-controls select {
margin-bottom: 5px !important;
}
.page-controls label {
margin-bottom: 2px !important;
}
.container1 { 
    margin: 0 auto;
}
}
