 body {
            margin: 10;
            font-family: Arial, sans-serif;
            
            
            padding: 10;
        }
        .main-container {
            display: flex;
            flex-direction: row;
        }   
         .right-pane {
            width: 15%;
            padding: 10px;
            box-sizing: border-box;
            box-shadow: 0 0 20px 10px rgba(0,0,0,0.3);
            border-radius: 25px;
            background-color: #B5C8CBFF;    
        }
        .imageThumbnails{
            box-sizing: border-box;
    background-color: #F7FEFFFF; 
    height: calc(80vh - 120px);
    overflow-y: auto; /* Makes the div scrollable vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width:212px;
        }
        
        .left_pane {
    width: 15%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #F6FCFC; 
    height: calc(100vh - 120px);
    overflow-y: auto; /* Makes the div scrollable vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left_pane > * {
    width: 100%;
    transform: scale(1.5); /* Adjust the scale value as needed */
    transform-origin: 0 0;
}
        .controls_pane {
    width: 100%; /* Full width across the top */
    padding: 20px;
    margin: 0; /* Remove margins to align with the top */
    box-sizing: border-box;
    background-color: #F6FCFC; 
    height: 120px; /* Fixed height for the top bar */
    overflow-x: auto; /* Makes the div scrollable horizontally */
    display: flex;
    flex-direction: row; /* Display items in a row */
    align-items: center; /* Center items vertically */
    justify-content: flex-start; /* Align items to the left (default) */
}

.controls_pane > * {
    width: 100%;
    transform: scale(0.5); /* Adjust the scale value as needed */
    transform-origin: 0 0;
}
        .center-pane {
            
            padding: 10px;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            
            margin-left: 2%;
            width:100%;
            min-height:500px;
        }
        
#custom-canvas {
    width: 100%;
    height: auto;

}



    canvas {
    display: block;
    margin: auto;
    z-index:1;
}
@font-face {
    font-family: 'Rubik_Glitch_Pop';
    src: url('/fonts/Rubik_Glitch_Pop/RubikGlitchPop-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Comic_Neue';
    src: url('/fonts/Comic_Neue/ComicNeue-Bold.ttf') format('ttf');
}
img:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease 0s;
}

img:active {
    transform: translateY(0px);
}

a {
    text-decoration: none;
    color:black;
}
