/* savings.css */
/* 저축 계산기 스타일 */
.calculator-type {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.type-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid #dee2e6;
  background: #f8f9fa;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.type-btn.active {
  background: #4C6EF5;
  color: white;
  border-color: #4C6EF5;
}

.result-box {
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

.result-detail {
  margin: 10px 0;
  padding: 10px;
  background: white;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
}

.result-label {
  color: #495057;
}

.result-value {
  font-weight: bold;
  color: #4C6EF5;
}
