/* Styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f4f4f4;
  color: #333;
}

.material-icons {
  cursor: pointer;
}

.invoice-container {
  margin: 20px auto;
  padding: 20px;
  max-width: 900px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.logo img {
  max-width: 150px;
}
.Reg-info {
 font-size: 9.5px;
 color: #f54538;
}
.company-info {
  text-align: right;
  font-size: 9.5px;
}
.TERMS-info {
  text-align: left;
  font-size: 11px;
  color: #08289e;
}

.bank-info {
  text-align: left;
  font-size: 9.5px;
}

.invoice-header {
  text-align: left;
  margin: 20px 0;
}

.title {
  font-size: 20px;
  color: #08289e;
}

.date, .invoice-number {
  font-size: 17px;
  color: #f54538;
}

.customer-details {
  margin: 20px 0;
}

.customer-details p {
  margin-bottom: 9px;
  font-size: 12px;
}

.invoice-body {
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f9f9f9;
}

input[type="text"], input[type="number"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.add-row-button {
  background-color:#f7344b;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
}

.add-row-button:hover {
  background-color: #45a049;
}

.totals {
  text-align: right;
  margin: 20px 0;
}

.totals p {
  margin: 10px 0;
}

button {
  padding: 10px 20px;
  margin: 10px 5px;
  cursor: pointer;
  background-color: #f7344b;
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #45a049;
}

.actions {
  text-align: right;
  margin-top: 20px;
}
