body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#controls {
    position: absolute;
    top: 20px;
    left: 1%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

#controls-note {
    position: absolute;
    top: 20px;
    right: 1%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

#noteText {
    padding: 10px;
    font-size: 32px;
    width: 300px;
    height: 300px;
    border: 2px solid #333;
    border-radius: 5px;
    resize: none;
    overflow: auto;
    white-space: pre-wrap;
}

#createNoteButton,
#editNoteButton,
#deleteNoteButton,
#clearBoardButton,
#exportScreenshotButton {
    padding: 20px 30px;
    font-size: 40px;
    width: 320px;
    height: 150px;
    white-space: normal;
    word-wrap: break-word;
}

#createNoteButton {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#editNoteButton {
    background-color: #FFA500;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#deleteNoteButton {
    background-color: #B22222;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#clearBoardButton {
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#exportScreenshotButton {
    padding: 12px 20px;
    /* font-size: 18px; */
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.colorButton {
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 320px;
    height: 120px;
    margin: 5px;
}

.colorButton:hover {
    transform: scale(1.04);
}

.colorButton.active {
    border: 2px solid #000;
    transform: scale(1.1);
    z-index: 20;
}

.color-text {
    font-size: 20px;
    color: #333;
    background-color: #f0f8ff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 300px;
    text-align: center;
    font-weight: bold;
}

#renderCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

#colorButtons {
    display: flex;
    flex-direction: column;
}

.controls-notes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}