@import url("style.css");

:root {
  /* Brand Colors - HTML overrides */
  --primary-hue: 250;
  --primary: hsl(var(--primary-hue), 80%, 60%);
  --accent: hsl(138, 80%, 60%);
}

/* Playground Wrapper Specifics (if any different from shared cards) */
.playground-wrapper {
  margin: 3rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.playground-header {
  background: var(--bg-body);
  padding: 10px 15px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.playground-title {
  font-weight: bold;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.playground-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 350px;
}

.editor-container {
  border-right: 1px solid var(--border);
}

/* Task Status Specifics */
.task-status {
    margin-top: 10px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.task-status.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
    border: 1px solid #2ecc71;
    display: block;
    animation: fadeIn 0.3s ease;
}

.task-status.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #c0392b;
    border: 1px solid #e74c3c;
    display: block;
    animation: fadeIn 0.3s ease;
}

#loginUserField {
    margin-left: 30px;
}

