/* === ResumeAgent 表单样式修正 === */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f8fafc;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 720px;
  margin: 60px auto;
  background: white;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

h1 {
  text-align: center;
  color: #1d4ed8;
}

label {
  display: block;
  font-weight: 600;
  margin-top: 16px;
}

input[type="text"], textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: #1e40af;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

#loading {
  text-align: center;
  color: #2563eb;
  font-weight: 500;
  margin-top: 20px;
}

.result {
  margin-top: 24px;
  white-space: pre-wrap;
  line-height: 1.6;
}

.back-link {
  text-align: center;
  margin-top: 30px;
}

.back-link a {
  color: #2563eb;
  text-decoration: none;
}
/* === Resume Agent 界面微调补丁 vFinal === */

/* 去掉顶部多余导航栏背景和边框 */
.nav {
  display: none;
}

/* 全局背景更柔和 */
body {
  background-color: #f7f9fc;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #222;
}

/* 中心卡片样式优化 */
.container {
  max-width: 720px;
  margin: 80px auto;
  background: #fff;
  padding: 48px 64px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* 主标题 */
h1 {
  text-align: center;
  color: #2563eb;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

/* 副标题文字 */
p {
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* 蓝色主按钮 */
.btn.primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn.primary:hover {
  background-color: #1e40af;
}

/* 链接颜色统一 */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/* === Resume Agent generate 页面样式补丁 vFinal === */
form {
  background: #fff;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 680px;
  margin: 40px auto;
}

label {
  display: block;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 6px;
  color: #333;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

button[type="submit"],
.btn.primary {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 30px;
}

button[type="submit"]:hover {
  background-color: #1e40af;
}

.btn-group {
  text-align: center;
  margin-top: 40px;
}

.btn-group button {
  background-color: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-group button:hover {
  background-color: #1e40af;
}

