body {
  background: #232328;
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.sidebar {
  width: 230px;
  background: #222228;
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.sidebar-header {
  padding: 32px 20px 18px 32px;
  font-weight: 800;
  font-size: 1.35rem;
  color: #32e67b;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}
.sidebar-header img {
  width: 150px;
  margin-right: 8px;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.sidebar nav a {
  color: #e5f6ef;
  padding: 13px 22px;
  font-size: 1.09rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  margin: 4px 14px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.02em;
  display: block;
}
.sidebar nav a.active, .sidebar nav a:hover {
  background: #282839;
  color: #37ff86;
  box-shadow: 0 2px 10px rgba(55,255,134,0.06);
}
.sidebar-section {
  color: #6d6cfb;
  margin: 28px 18px 0 18px;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.sidebar-user {
  margin-top: auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sidebar-user img {
  width: 38px;
  border-radius: 99px;
  background: #33334a;
}
.sidebar-user .user-info { color: #fff; font-size: 1rem;}
.sidebar-user .user-role { color: #9596a4; font-size: 0.92rem;}

.main-content {
  margin-left: 240px;
  max-width: 1400px;
  padding: 34px 36px 36px 36px;
  min-height: 100vh;
}
/* .topbar {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}
.topbar h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}
.topbar input[type="text"] {
  padding: 10px 20px;
  border-radius: 22px;
  border: none;
  width: 220px;
  background: #23232d;
  color: #fff;
  font-size: 1.06rem;
  outline: none;
  margin-left: auto;
}
.topbar .notif-btn {
  background: none;
  border: none;
  color: #42f3af;
  font-size: 1.6rem;
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.16s;
}
.topbar .notif-btn:hover { color: #fff; }
.topbar img {
  width: 36px;
  border-radius: 99px;
} */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: #1e1e2f;
  border-bottom: 1px solid #333;
  border-radius: 12px;
  margin-bottom: 20px;
  gap: 22px;
}

.topbar-left h2 {
  margin: 0;
  font-size: 24px;
  color: #ffffff;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-right input {
  background: #2e2e40;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  color: #ccc;
}

.topbar-right img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}




.dashboard-row {
  display: flex;
  gap: 26px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.card-quick-actions {
  background: #23232c;
  padding: 30px 28px 24px 28px;
  border-radius: 23px;
  box-shadow: 0 4px 22px rgba(44,255,167,0.06);
  margin-bottom: 0;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 340px;
}
.card-quick-actions h3 {
  color: #fff;
  margin: 0 0 16px 0;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.action-btn {
  display: block;
  width: 100%;
  background: #38f583;
  color: #181818;
  border: none;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 15px 0;
  margin-bottom: 12px;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(44,255,167,0.06);
  transition: background 0.15s, color 0.15s, transform 0.13s;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
}
.action-btn:hover {
  background: #23d58a;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.card-quick-actions .deliverables-title {
  color: #b0afff;
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
  margin-top: 18px;
}
.card-quick-actions ul {
  margin: 0;
  padding-left: 24px;
  color: #fff;
  font-size: 1.01rem;
}
.card-quick-actions li {
  margin-bottom: 5px;
}
.card-featured-project {
  background: #23232c;
  border-radius: 20px;
  padding: 44px 24px 28px 24px;
  text-align: center;
  min-width: 280px;
  flex: 1 1 260px;
  max-width: 340px;
}
.card-featured-project .percent {
  color: #38f583;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.card-featured-project .desc {
  color: #e4e4ef;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

/* ---- Kanban Section ---- */
.kanban-section { margin-top: 38px; }
.kanban-section h3 { color: #fff; font-size: 1.2rem; margin-bottom: 20px;}
.kanban-board {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}
.kanban-column {
  background: #23232c;
  border-radius: 14px;
  padding: 14px 12px 10px 12px;
  flex: 1 1 150px;
  min-width: 130px;
}
.kanban-title {
  color: #b0afff;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.03rem;
  text-align: center;
}
.kanban-task {
  background: #30303b;
  color: #fff;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 7px;
  font-size: 1.01rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(55,255,134,0.04);
  transition: background 0.16s;
}
.kanban-task.completed {
  color: #38f583;
  text-decoration: line-through;
}
.kanban-task:hover {
  background: #35354a;
}

/* ---- Project List ---- */
.project-list-section {
  background: #23232c;
  border-radius: 22px;
  margin-top: 36px;
  padding: 28px 24px;
}
.project-list-section h3 {
  color: #fff;
  font-size: 1.16rem;
  margin-bottom: 17px;
}
.project-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 1.07rem;
}
.project-table th {
  text-align: left;
  color: #b0afff;
  padding-bottom: 10px;
  font-weight: 600;
}
.project-table td {
  padding: 8px 0;
  border-bottom: 1px solid #292937;
}
.status {
  padding: 5px 15px;
  border-radius: 13px;
  font-size: 0.97rem;
  font-weight: 700;
}
.status.ongoing { background: #242a1b; color: #a9ffb5; }
.status.completed { background: #232e1c; color: #38f583; }
.status.hold { background: #2e2e1c; color: #ffe573; }
.progress-bar {
  width: 90px;
  height: 12px;
  background: #35353c;
  border-radius: 6px;
  margin: 0 6px 0 0;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.progress {
  background: linear-gradient(90deg, #38f583 60%, #0a9d54 100%);
  height: 100%;
  border-radius: 6px;
}
.progress-text {
  font-size: 0.99rem;
  color: #38f583;
  margin-left: 10px;
  font-weight: 700;
}

/* --------- Responsive --------- */
@media (max-width: 1080px) {
  .main-content { padding: 28px 8px 16px 8px; }
  .dashboard-row { flex-direction: column; gap: 18px; }
  .kanban-board { flex-direction: column; }
}
@media (max-width: 700px) {
  .sidebar { display: none; }
  .main-content { margin-left: 0; padding: 14px 3vw; }
}
