body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    overflow: hidden;
}

h1, p {
    margin: 0 10px;
    padding: 10px;
}

#menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background-color: #333;
    color: white;
    transition: width 0.3s ease;
    z-index: 1000;

overflow: hidden;
}

#menu:hover {
    width: 200px;
}

#menu-toggle {
    width: 100%;
    height: 50px;
    background-color: #007bff;
    color: white;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

#shape-menu {
    padding: 10px;
}

.draggable {
    margin: 10px 0;
    padding: 10px;
    cursor: grab;
    text-align: center;
}

.draggable img {
    width: 40px;
    height: 40px;
}

#canvas-container {
    display: block;
    border: 1px solid #ccc;
    margin: 0 auto;
    width: calc(100% - 20px);
    height: calc(100vh - 150px);
    position: relative;
    overflow: scroll;
}

canvas {
    width: 100%;
    height: 100%;
}

#controls {
    position: sticky;
    bottom: 0;
    background-color: white;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
}

label, select {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
}

button.delete-button {
    background-color: red;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #controls {
        flex-direction: column;
        align-items: center;
    }
    
    #menu {
        display: block;
    }
}

#priceDisplay {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

#priceDetails {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    text-align: left;
    
}
button#sendEmailBtn {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
}