/* retirement.css */
/* 퇴직금/실업급여 및 시급/월급 계산기 스타일 */
.calculator-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calculator-type {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.type-btn {
  flex: 1;
  padding: 8px;
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.type-btn.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.type-btn:hover:not(.active) {
  background-color: #e9ecef;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.input-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

#retirementResult,
#unemploymentResult {
  margin-top: 15px;
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.input-group.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.salary-details {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.salary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

.salary-item:last-child {
  border-bottom: none;
}

.salary-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #dee2e6;
}

.salary-info ul {
  margin-top: 10px;
  padding-left: 20px;
}
