/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  color: #000;
  background-color: #fff;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #111;
  background: #fafafa;
}

a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.page {
  min-height: 100vh;
  background: #fafafa;
}

.topbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 18px;
}

.container {
  max-width: 1024px;
  margin: 32px auto 64px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.hero p {
  margin: 0 0 14px;
  color: #333;
}

.actions {
  display: flex;
  gap: 12px;
  margin: 14px 0;
}

button {
  cursor: pointer;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

button:active {
  transform: translateY(0);
  box-shadow: none;
}

button.ghost {
  background: #fff;
  color: #000;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.status {
  margin-top: 6px;
  font-weight: 600;
  color: #111;
}

h2 {
  margin: 0 0 8px;
}

.hint {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field.inline {
  max-width: 320px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  background: #fff;
  color: #111;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #000;
  outline-offset: 1px;
}

.log-view {
  min-height: 200px;
  background: #f7f7f7;
  border-radius: 10px;
  border: 1px solid #ececec;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  color: #111;
  overflow-y: auto;
  max-height: 320px;
}

.log-line {
  margin: 4px 0;
  white-space: pre-wrap;
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .actions {
    flex-direction: column;
  }
}

