/* =========================
   ADMIN – LAYOUT BASE
========================= */

body {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

h1, h2, h3 {
  margin-top: 20px;
}

/* FORM */
form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

input, select, button {
  padding: 8px;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  cursor: pointer;
}

/* TABELA */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  padding: 8px;
  border-bottom: 1px solid #444;
  text-align: left;
}

/* PREVIEW */
#themePreviewContainer {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 10px;
}

.preview-card {
  flex: 1;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* PREVIEW STATUS */
.preview-card .dj-status {
  padding: 4px 8px;
  border-radius: 6px;
}