        /* Additional styling for the canvas */
        #canvas {
            border: 2px solid #ccc;
        }

        .dock-btn {
            transition: all 0.3s ease-in-out;
        }

        /* Sidebar with fixed height and scrollable */
        #imagesTabContent {
            height: calc(100vh - 180px);
            /* Adjusts height to account for top navigation bar */
            overflow-y: auto;
            /* Enables vertical scrolling */
        }

        /* Sidebar with fixed height and scrollable */
        #layersList {
            height: calc(100vh - 220px);
            /* Adjusts height to account for top navigation bar */
            overflow-y: auto;
            /* Enables vertical scrolling */
        }

        .dock-btn:hover {
            transform: scale(1.1);
        }

        /* Images container */
        .images-container img {
            width: 100%;
            height: auto;
            margin-bottom: 8px;
            cursor: pointer;
            border-radius: 8px;
            transition: transform 0.2s;
        }

        .images-container img:hover {
            transform: scale(1.05);
        }

        .right-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: #f9f9f9;
            border-left: 1px solid #ddd;
            padding: 20px;
            box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
        }

        .hidden {
            display: none;
        }

        .right-sidebar form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .right-sidebar label {
            font-size: 14px;
            font-weight: bold;
        }

        .right-sidebar input {
            padding: 5px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .right-sidebar input[type="color"] {
            width: 50px;
            height: 30px;
            border: none;
            padding: 0;
            cursor: pointer;
        }
        #paintBrushControls {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        #propertiesPanel{
            margin-top: 200px;
            height: 70vh;
        }