
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}
label {
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
select {
    width: calc(100% - 12px);
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
input[type="submit"]:hover {
    background-color: #45a049;
}
#toggleEstimate:focus {
    outline: none;
    box-shadow: none;
}
.sticky-estimate {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;   /* Ensure it stays above other content */
    /*Add styling to make it look like a receipt*/
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    box-sizing: border-box;
    overflow: auto; /* Allow scrolling if content overflows */
    background: linear-gradient(to bottom, #f9f9f9, #fff);

}