body {
  font-family: 'Roboto', sans-serif;
  background: #fdf6f9;
  padding: 20px;
  color: #333;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
/* === Dashboard Container Wrapper === */

.dashboard-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

.dashboard-container {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 1100px;
  margin: 40px auto;
  transition: all 0.3s ease-in-out;
}

/* Optional background tint for entire page */
body {
  background-color: #f7f9fb;
}


.top-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.top-cards .card {
  border-radius: 14px;
  padding: 25px 20px;
  color: #fff;
  width: 260px;
  height: 160px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card .count {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
}

.card .meta {
  font-size: 0.9rem;
}


.draft { background-color: #ef5294; }
.review { background-color: #e34625; }
.ready { background-color: #7da73b; }

.tracker-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tracker-title {
  color: #e91e63;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tracker-columns {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

/* Column Styling */
.tracker-columns .column {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 16px;
  min-height: 200px;
  flex: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Header icons optional if you want */
.column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Task Card */
.task-card.styled {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}


.task-title {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.task-action {
  width: 100%;
  display: flex;
  justify-content: center;
}



.notice {
  background: #ffe3ed;
  color: #c2185b;
  border-left: 5px solid #e91e63;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

/*sidebar nav*/

.dashboard-sidebar a.active {
  background-color: #f0f0f0;
  font-weight: bold;
  color: #000;
}

.dashboard-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.dashboard-sidebar {
  width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-weight: 500;
}

.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
}

.dashboard-sidebar li {
  margin: 16px 0;
}

.dashboard-sidebar a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.dashboard-sidebar a:hover {
  background-color: #f5f5f5;
}

.dashboard-content {
  flex-grow: 1;
}


/*badge design*/
.badge {
  background: #ff3d57;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  margin-left: 6px;
}
/*card button styling*/
.action-btn {
  display: inline-block;
  margin-top: 8px;
  background: #f0f0f0;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.2s ease;
}
/*create page css*/
.form-wrapper {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
/*my question page css*/
.question-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.question-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  width: calc(33% - 20px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.question-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.question-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.edit-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  background: #eef1ff;
  color: #0033cc;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}


/*review section css*/
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

.container {
  display: flex;
  flex-direction: row;
}

.sidebar {
  width: 220px;
  background: #f5f7fa;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.05);
  height: 100vh;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 15px 0;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 10px;
  display: block;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.sidebar a:hover,
.sidebar a.active {
  background: #f0f4f8;
  color: #000;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 30px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.top-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  border: 1px solid #e0e6ed;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s ease;
}

.stat-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}


.stat-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.stat-card .number {
  font-size: 36px;
  font-weight: 700;
  color: #2f3542;
  margin-top: 10px;
}


.deadline-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
}


.badge.red {
  background: #e74c3c;
}

.badge.orange {
  background: #f39c12;
}

.review-list {
  display: grid;
  gap: 20px;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e6ed;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  position: relative;
}

.review-card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.review-card .meta {
  font-size: 13px;
  color: #777;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.chart-container {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 20px;
}

.toggle {
  display: flex;
  align-items: center;
}

.toggle input {
  margin-right: 10px;
}

