@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background-color: #888c8d;
  padding: 25px 20px;
  color: white;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.sidebar h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

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

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sidebar ul li a:hover {
  background-color: #6c6f70;
  transform: translateX(5px);
}

.main {
  flex: 1;
  padding: 40px;
  background-color: #fff;
}

h2 {
  font-weight: 600;
  color: #333;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}

table th, table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table th {
  background-color: #d5d5d5;
  color: #333;
  font-weight: 600;
}
.topbar {
  background-color: #888c8d;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.footer {
  background-color: #888c8d;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}
.dashboard-card {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-family: 'Times New Roman', Times, serif;
}
.dashboard-container {
  text-align: center;
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 0 auto;
}

.dashboard-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.foto-dashboard {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #888c8d;
}
.topbar {
  background-color: #888c8d;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-topi {
  width: 30px;
  height: 30px;
}




