/* styles.css */
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.toolbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #eee;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.left-panel {
    position: fixed;
    left: 0;
    top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    height: calc(100vh - 50px);
    overflow-y: auto;
}

.color-picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px;
    border: 2px solid transparent;
}

.color-option.active {
    border-color: #fff;
}

canvas {
    border: 1px solid #000;
    margin-top: 100px; /* Offset for toolbar */
    margin-left: 150px; /* Offset for left panel */
    width: 1000px;  /* Set the display width */
    height: 500px;  /* Set the display height */
}