.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

.topbar {
  background: #111827;
  color: #f9fafb;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
}

.topbar-title {
  margin: 0;
  font-size: 1.25rem;
}

.topbar-shop {
  font-size: 0.875rem;
  opacity: 0.9;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card {
  background: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-header h2 {
  margin: 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid textarea[name="description"] {
    grid-column: 1 / -1;
  }
  .form-actions {
    grid-column: 1 / -1;
  }
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.form-input,
.form textarea {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.form-input:focus,
.form textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px #4f46e5;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

.button:hover {
  background: #f3f4f6;
}

.button-primary {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #f9fafb;
}

.button-primary:hover {
  background: #4338ca;
}

.button-secondary {
  background: #f9fafb;
}

.button-small {
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.table th,
.table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 0.9rem;
}

.table th {
  background: #f9fafb;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 0.75rem;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.alert {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.alert-info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.mt-md {
  margin-top: 1rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.share-section hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.text-muted {
  color: #6b7280;
  font-size: 0.85rem;
}

.job-detail h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.job-meta {
  margin: 0.1rem 0;
}

.job-meta-muted {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.job-description {
  margin-top: 1rem;
  line-height: 1.6;
}

code {
  background: #f3f4f6;
  padding: 0.1rem 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.85rem;
}

