body {
  font-family: -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f5f6f8;
  color: #1b1f23;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.auth-box {
  max-width: 360px;
  margin: 80px auto;
  background: white;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

input, button, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #d0d5da;
  box-sizing: border-box;
  font-size: 14px;
}

button {
  background: #2563eb;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 14px;
  font-weight: 600;
}

button:hover { background: #1d4ed8; }

.error { color: #c0392b; }

.upload-box, .video-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

textarea {
  height: 90px;
  font-family: monospace;
  font-size: 12px;
}

.status {
  font-weight: 600;
  text-transform: capitalize;
}

.status-ready { color: #16a34a; }
.status-processing { color: #d97706; }
.status-uploading { color: #6b7280; }

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid #e5e7eb;
}
