	.home-button {
	  display: inline-block;
	  margin: 10px 0;
	  padding: 8px 14px;
	  background-color: #0073aa;
	  color: #fff;
	  text-decoration: none;
	  border-radius: 4px;
	  font-size: 14px;
	  transition: background-color 0.2s ease;
	}
	.home-button:hover {
	  background-color: #005d8f;
	}
		
	body {
      font-family: "Pretendard", "Noto Sans KR", sans-serif;
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
      background: #f9f9f9;
      color: #333;
    }

    h2 {
      font-size: 24px;
      color: #222;
      margin-bottom: 20px;
    }

    textarea, input[type="text"], input[type="url"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
    }

    button {
      padding: 10px 20px;
      background-color: #007acc;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s;
    }

    button:hover {
      background-color: #005fa3;
    }

    hr {
      border: none;
      border-top: 1px solid #ccc;
      margin: 30px 0;
    }

    h3 {
      font-size: 18px;
      color: #444;
    }

    p {
      margin: 8px 0;
    }

    p.success {
      color: green;
      font-weight: bold;
    }

    p.error {
      color: red;
      font-weight: bold;
    }

    a {
      color: #007acc;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }