.closebutton {
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-color: #EC6B5E;
  border-radius: 16px;
  border: solid 1px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;}

.window {
    border: solid; 
    width: 750px; 
    justify-content: flex-start; 
    padding: 10px; 
    border-radius: 10px; 
    background: #0A4D8C; 
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); 
    flex-direction: column; 
    align-items: center; 
    display:flex;
    }

.windowTitle {
    letter-spacing: 3px; 
    font-family: Blippo, fantasy; 
    margin: 2px 4px 4px 4px; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    color: rgb(234, 27, 69);
    }

.windowText {
    margin: 4px; 
    color: white;
    }

.sketch-toolbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: #f4f7fb;
    border-bottom: 1px solid #dbe3ee;
    box-sizing: border-box;
}

.sketch-control {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #04316a;
}

.sketch-control input[type="color"] {
    width: 28px;
    height: 28px;
    border: none;
    padding: 0;
    background: transparent;
}

.sketch-control input[type="range"] {
    width: 90px;
}

.sketch-toolbar button {
    border: none;
    border-radius: 6px;
    background: #0a4d8c;
    color: white;
    padding: 6px 10px;
    cursor: pointer;
}

.sketch-canvas {
    width: 100%;
    flex: 1;
    background: white;
    display: block;
    touch-action: none;
    cursor: crosshair;
}

.selected {
    background: linear-gradient(90deg, rgba(255, 32, 79, 0.5) 0%, rgba(10, 77, 140, 0.2) 100%);
    border-radius: 8px;
    }