/* item.css - Styling for Item.js */

.item-wrapper {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: var(--background1); /* Light grey to match theme */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); /* Softer shadow */
  font-family: Arial, sans-serif;
}

.item-main {
  flex: 1;
  padding-right: 20px;
  border-right: 2px solid var(--background3); /* Subtle separation */
}

.item-details {
  flex: 1;
}

.item-main h1 {
  color: var(--text1);
  font-size: 24px;
  border-bottom: 2px solid var(--accent2); /* Muted green for consistency */
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.item-main h2 {
  font-size: 20px;
  margin: 10px 0;
  color: var(--text1);
  opacity: 0.9; /* Slightly lighter for structure */
}

.item-main p {
  font-size: 16px;
  color: var(--text1);
  opacity: 0.75; /* Muted for readability */
}

.stage {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

/* Stage colors with minimalistic adjustments */
.stage-backlog { background: #FFD166; color: #000; } /* Softer yellow */
.stage-development { background: #2196F3; color: #fff; } /* Bright blue */
.stage-testing { background: #FF7043; color: #fff; } /* Less intense orange */
.stage-done { background: var(--accent2); color: #fff; } /* Using theme green */
