/* General body styling */
body {
    font-family: "Times New Roman", Times, serif;
    padding: 30px;
}

/* Invoice header */
h1 {
    text-align: center;
    margin-bottom: 0;
}
h2 {
    text-align: center;
    margin-top: 5px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 6px;
    text-align: center;
}

/* Input fields inside table */
input {
    width: 100%;
    border: none;
    text-align: center;
    font-family: inherit;
}

/* Header div (To / Date) */
.header {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Total section */
.total {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

/* Buttons */
button {
    padding: 10px 15px;
    margin-top: 15px;
    margin-right: 10px;
    cursor: pointer;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
}
button:hover {
    background-color: #005177;
}

/* Bank details section */
.bank {
    margin-top: 20px;
    line-height: 1.6;
}