body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Needed for vertical centering */
}
.pricebox{
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80vw; /* Fixed width for the pricebox */
    height: 80vh;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fetchButton{
    background-color: gold;
    color: black;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}
.fetchButton:hover {
    background-color: yellow;
}
.custom-upload {
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #007bff;
    padding: 10px 20px;
    background-color: #a1cfff;
    aspect-ratio: 1/1;
    width: 150px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-upload:hover {
    background-color: #0056b3;
}
#dxf-canvas {
    width: 100%;
    height: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
}
#quote-result {
    font-size: 20px;
    font-weight: bold;
}
