/* invoice_button_style.css */
body {
    font-family: sans-serif;
}

.container {
    text-align: center;
    margin-top: 50px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    font-weight: 550;
    background-color: rgb(0, 0, 0);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 40%;
    text-align: left;
}

.closeBtn {
    float: right;
    cursor: pointer;
    font-size: 20px;
}

.serviceRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}


input[type="text"], input[type="number"], input[type="date"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    box-sizing: border-box;
}
