#window-checkout-form {
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

#window-fields .window-measurement {
    margin-bottom: 10px;
}
button#place-order-button, button#add-window-button {
    background-color: #4f7492;
    color: #ffffff;
    height: 40px;
    width: 200px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

button#place-order-button, button#add-window-button:hover {
    background-color: #3b5a70;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

button#place-order-button, button#add-window-button:active {
    background-color: #2e4855;
    transform: scale(0.98);
}

input#address, input#mobile, input#name, input.window-height, input.window-width {
    width: 100px;
    height: 40px;
    border: 1px solid #aaa;
    padding: 0 10px;
    margin-right: 15px;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input#address, input#mobile, input#name, input.window-height, input.window-width:focus {
    border-color: #4f7492;
    box-shadow: 0 0 5px rgba(79, 116, 146, 0.5);
    outline: none;
}

input#address, input#mobile, input#name {
    display: block;
    width: 250px !important;
    margin-bottom: 20px;
}
