* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  color: #2c3e50;
}

.tax-sections {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tax-regime {
  width: 48%;
}

.tax-regime h2 {
  text-align: center;
  margin-bottom: 20px;
}

#newTaxForm{
  margin-top: 60px;
}

.required:after {
  content:" *";
  color: red;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
}

input[type="number"], select {
  padding: 8px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px;
  font-size: 1.2em;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #2ecc71;
}

#result {
  margin-top: 30px;
  padding: 20px;
  background-color: #ecf0f1;
  border-radius: 6px;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #7f8c8d;
}

/* Basic styling for tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
}
table, th, td {
  border: 1px solid black;
}
th, td {
  padding: 8px;
  text-align: left;
}
th {
  background-color: #f4f4f4;
}
.results-container {
  margin-top: 20px;
}
.form-group {
  margin-bottom: 15px;
}

#savings{
  margin-top: 10px;
}
#svg {
  display: flex;
  width: 150px;
  /* position: none; */
  top: -40px;
  left: -400px;
  /* pointer-events: none; */
  z-index:1
}

.contact-info {
  text-align: center;
  margin-top: 20px;
  font-size: 1em;
}

.contact-info a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  #newTaxForm{
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  #newTaxForm{
    margin-top: 72px;
  }
}