body {
  font-family: Arial, sans-serif;
 
  background-size: cover;                 /* Ensures it covers the whole page */
  background-repeat: no-repeat;           /* No repeating */
  background-position: center;            /* Center the image */
  background-attachment: fixed;           /* Keeps image in place when scrolling */
  margin: 0;
    color: rgb(0, 128, 0);
  padding: 20px;
}


.invoice-app {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input, select {
  width: 100%;
  padding: 10px;
  margin: 5px 0 10px;
  border: 1px solid #cce0f0;
  border-radius: 4px;
}

button {
  background-color: #ff0000;
  color: white;
  padding: 10px 15px;
  border: none;
  margin-bottom: 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: rgb(0, 128, 0);
}

table {
  color: rgb(0, 128, 0);
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 12px;
}

th, td {
  border: 1px solid rgb(0, 128, 0);
  padding: 10px;
  text-align: center;
  font-size: 10px;
}

.client-box {
  background: #cce0f0;
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 12px;

}

.totals {
  text-align: right;
  margin-top: 20px;
  font-size: 12px;
}
.company-info {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  border-bottom: 2px solid #004aad;
  background-color: #cce0f0;
}
.company-info h2 {
  margin: 0;
  color: #004aad;
  border: 1px solid #cce0f0;
}

.invoice-details-box {
  background-color: #f3f6fb;
  padding: 10px;
  margin-top: 7.5px;
  border-radius: 5px;
  border: 1px solid #cce0f0;
  font-size: 12px;
}
.banking-details {
  background-color: #f3f6fb;
  padding: 20px;
  margin-top: 20px;
  border-radius: 6px;
  border: 1px solid #cce0f0;
}

.banking-details h2 {
  margin-bottom: 15px;
  color: rgb(0, 128, 0);
  text-align: center;
}

.banking-details p {
  margin: 3px 0;
  font-size: 12px;
  color: rgb(0, 128, 0);
}

.banks-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bank {
  width: 40%;
}

.framed-section {
  border: 1px solid #444;
  padding: 12px;
  margin: 16px 0;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.framed-section h2 {
  margin-top: 0;
  color: rgb(0, 128, 0);
}

.slogan
{
  color: #ff0000;

}

.framed-section input,
.framed-section select {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  max-width: 300px;
  padding: 6px;
}

.framed-section button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #009200;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.framed-section button:hover {
  background-color: #ff0000;
}

.partners img{
width: 80%;
height: auto;

}

