:root {
  --background: #060c13;
  --dark-bg: #06090f;
  --surface: #0b121c;
  --surface-soft: #0f1723;
  --border: #141926;
  --outline: #0e1116;
  --shadow: #04090e;
  --menu-bg: #030407;
  --sb-logo-color: #2e72b3;
  --sb-active-i-color: #3fa0fa;
  --sb-active-bg: #0b1826;
  --sb-scroll-bg: #15314e;
  --sb-title-text: #9a9fa5;
  --blue-active-text-i: #0b1826;
  --white-text: #ffffff;
  --muted-text: #9fb0c3;
  --muted-strong: #c7d2de;
  --chart-red: #f43f5e;
  --chart-green: #4ade80;
  --chart-blue: #60a5fa;
  --chart-yellow: #f59e0b;
  --chart-purple: #8884d8;
  --chart-white: #d1d5db;
  --task-pink: #df2f8c;
  --task-purple: #9d40ed;
  --task-light-purple: #706dff;
  --task-blue: #2873ec;
  --calendar-yellow-bg: #352206;
  --calendar-yellow: #ffd230;
  --calendar-red-bg: #340c11;
  --calendar-red: #ffa2a2;
  --calendar-green-bg: #022b16;
  --calendar-green: #7bf1a8;
  --team-performance-blue: #3fa0fa;
  --project-green-bg: #052f1c;
  --project-green: #05df72;
  --project-yellow-bg: #37260c;
  --project-yellow: #e17100;
  --project-blue-bg: #0e2040;
  --project-blue: #155dfc;
  --project-red-bg: #ffe2e2;
  --project-red: #e7000b;
  --success-bg: rgba(34, 197, 94, 0.16);
  --warning-bg: rgba(245, 158, 11, 0.16);
  --danger-bg: rgba(244, 63, 94, 0.16);
  --info-bg: rgba(63, 160, 250, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--background);
  color: #e2e8f0;
  font-family: 'Inter';
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.right {
  display: flex;
  gap: 10px;
}

input {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #1e293b;
  color: white;
}

input::placeholder {
  color: #94a3b8;
}

button {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right button svg{
  fill: white;
}

.right button {
  background: #3b82f6;
  color: white;
}

.right button:hover {
  background: #2563eb;
}

.rendi {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: auto;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 50px;

}

.rendi button {
  background-color: var(--dark-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: 1px solid var(--outline);
  box-shadow: 0px 3px 12px var(--shadow);
  color: #cbd5f5;
  width: 320px;
  
}

.rendi button:hover {
  background: #3b82f6;
  color: white;
}

#usersContainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 24px;
  /* padding: 40px 100px; */

}

.card {
  width: 100%;
  max-width: 500px;
  padding: 24px 14px 18px;
  background: #050a12;
  border: 1px solid #101827;
  border-radius: 0;
  color: white;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #cfe8ff;
}

.user-heading h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a9b5c4;
  font-size: 14px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid currentColor;
}

.badge.active {
  color: #00ff75;
  background: rgba(0, 255, 117, 0.08);
}

.badge.away {
  color: #a7b0bd;
  background: rgba(167, 176, 189, 0.08);
}

.info {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #a9b5c4;
  font-size: 14px;
}

.info-row strong {
  color: white;
  font-weight: 500;
  text-align: right;
}

.skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.skills span {
  padding: 4px 10px;
  background: #0c121c;
  border-radius: 6px;
  color: #e7edf7;
  font-size: 12px;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.buttons button {
  height: 32px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile {
  background: transparent;
  border: 1px solid #1d2a3b;
  color: white;
}

.message {
  background: #3fa0fa;
  color: white;
}

.profile-view {
  text-align: center;
  margin: auto;
}

.profile-view img {
  border-radius: 50%;
}


.hamburger {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 900px) {
  #usersContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #usersContainer {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: block;
  }

  .right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #020617;
    padding: 15px;
  }

  .right.active {
    display: flex;
  }
}

@media (max-width: 390px) {
  .header {
    padding: 12px 15px;
  }

  .header h2 {
    font-size: 18px;
  }

  .right {
    gap: 8px;
  }

  input {
    width: 100%;
    font-size: 14px;
  }

  .right button {
    width: 100%;
    font-size: 14px;
  }

  .rendi {
    padding: 10px;
    gap: 8px;
  }

  .rendi button {
    width: 100%;
    font-size: 14px;
    padding: 8px;
  }

  #usersContainer {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 15px;
  }

  .card {
    padding: 14px;
    border-radius: 14px;
  }

  .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }

  .card h4 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .buttons button {
    width: 100%;
  }
}