body {
    margin: 0;
    font-family: Arial, sans-serif;
}
#map-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}
#map, #whiteboard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#whiteboard {
    z-index: 10;
}
#map {
    opacity: 0.2;
}
#login-section {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
}
#map-opacity {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 20;
}
#media-input {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 20;
}
#toolbar {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    display: flex;
    gap: 10px;
}
#toolbar button {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #000;
    cursor: pointer;
}
#toolbar button.active {
    background-color: #4CAF50;
    color: white;
}
.tool-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#color-selector {
    padding: 5px;
}
#whiteboard.pen-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>'), auto;
}
#whiteboard.eraser-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/></svg>'), auto;
}
#whiteboard.media-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"/></svg>'), auto;
}
#whiteboard.default-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>'), auto;
}