@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kanit", sans-serif;
}

body {
  background: #f1f5f9;
  color: #0f172a;
}

/* SIDEBAR */

.sidebar {
  width: 260px;
  height: 100vh;
  background: #0f172a;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sidebar a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.sidebar a:hover {
  background: #1e293b;
  color: #fff;
}

.main-content {
  margin-left: 260px;
  padding: 30px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
