body { font-family: Arial, sans-serif;  
    background-color: aliceblue;
    padding:20px
}
.logo img{width: 70px; height: 70px;}

.logo h1{text-align: center;
    margin: 0;
    color:black;   
    font-weight:bold;
    font-family:'Georgina' ,'Times New Roman', Times, serif;
    width:100%}

.invoice-header { margin-bottom: 10px; 
                      text-align:right;}
input { padding: 5px; margin: 10px 0; }

button { padding: 10px 20px; background-color: #10B981;
             color: white; border: none; cursor: pointer; }
#invoiceTable {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}
    

.invoiceForm input{font-size: larger;
    font-family: 'Times New Roman', Times, serif;
    font-style: oblique;
    font-weight: medium;}

#invoiceTable th {
    background-color: #20B9F1; /* Dark blue header */
    color: white;
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

#invoiceTable td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

#invoiceTable input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#invoiceTable .amount {
    font-weight: bold;
    text-align: right;
    padding-right: 10px;
}

#invoiceTable tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray for even rows */
}

#invoiceTable tr:hover {
    background-color: #f1f1f1; /* Hover effect */
}
 .total { text-align: right;
            margin-top: 5px;
            font-weight: bold;
        
        }
        .total input{font-size: large;
            font-family: 'Times New Roman', Times, serif;
             font-weight: 100;
             font-style: oblique;
            text-align: center;
            font-weight: bold;}
.notes-form label {
            font-size: 1.8em; /* Increased label size */
            font-weight: bold;
            color: #1a3c5e;
            display: inline;
            margin-bottom: 5px;
        }
        .notes-form textarea {
            width: 70%; /* Full width within container */
            height: 70px; /* Increased height for a big box */
            padding: 20px; /* Bigger padding */
            font-size: 1.5em; /* Larger text inside */
            border: 2px solid #ccc;
            border-radius: 5dvb;
            box-sizing: border-box;
            resize: vertical; /* Allow vertical resizing */
            transition: border-color 0.3s ease;
        }
        
