body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.table_container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.controls label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.controls input[type="number"] {
  width: 80px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.controls input[type="number"]:focus {
  border-color: #ed1c24;
  outline: none;
  box-shadow: 0 0 0 2px rgba(237, 28, 36, 0.2);
}

.calc__1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.calc-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.calc-1-svg {
  width: 100px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.2s;
}

.calc-1-svg:hover {
  transform: scale(1.05);
}

.calc-st {
  stroke: #231f20;
}

.calc-st__1 {
  stroke-width: 1;
}

.calc-st__2 {
  stroke-width: 2;        
}

.calc-st__0 {
  stroke-width: .5;
}

.calc-txt1-1-1 {
  font-size: 11px;
  text-anchor: start;
}

.calc-txt1-1-2 {
  font-size: 11px;
  text-anchor: end;
}

.calc-txt1-2-1 {
  text-anchor: middle;
  alignment-baseline: middle;              
  font-size: 20px;
}

.calc-txt1-n {
  text-anchor: middle;
  alignment-baseline: middle;      
  font-size: 11px;
}

.summary_container {
  background-color: #ffffff;
  border-radius: 0.375rem;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.summary {
  max-width: 600px;
  margin: 0 auto;
}

.summary h3 {
  color: #333;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ed1c24;
}

.summary p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.summary p:last-child {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
  font-weight: 500;
} 