
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #fafafa;
}

.container {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input[type="number"],
input[type="date"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #ff7f50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}

button:hover {
  background-color: #ff5c2b;
}

#result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.disclaimer {
  font-size: 0.95em;
  color: #444;
  margin-top: 30px;
  line-height: 1.6;
  background-color: #fff3f3;
  border-left: 5px solid #e53935;
  padding: 15px;
  border-radius: 4px;
}
.disclaimer strong {
  color: #d32f2f;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
}

.lang-switch select {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.text-link {
  display: inline-block;
  color: #007BFF; /* 파란색 */
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 20px;
}

.text-link:hover {
  color: #0056b3;
}

.site-footer a {
  color: #c2185b;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.container_footer {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;  /* ← 이 줄 추가 */
}