* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: white;
    font-family: Arial, sans-serif;
    padding: 10px;
}
.container {
    position: relative;
    width: 90%;
    max-width: 900px;
}
.header {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    padding: 1px;
}
.header span img {
    max-width: 200px;
    height: auto;
}
.canvas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 2px solid black;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}
.toolbar {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toolbar button {
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.toolbar button img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.toolbar button:hover {
    transform: scale(1.15);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);
}
.genai-button {
    position: absolute;
    left: -50px;
    top: 50%;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.2rem;
    padding: 5px;
}
.genai-button img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.genai-button:hover {
    transform: scale(1.15);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
    .toolbar {
        right: -40px;
    }
    .toolbar button, .genai-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .toolbar button img, .genai-button img {
        width: 65%;
        height: 65%;
    }
    .canvas-container {
        aspect-ratio: 9 / 16;
    }
    .genai-button {
        left: -40px;
    }
}
