/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Sidebar Style */
body {
  font-family: Arial, sans-serif;
  display: flex;
}

.sidebar {
  width: 250px;
  height: 100vh;
  background-color: #2c3e50;
  color: white;
  padding: 20px;
}

.sidebar .logo {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar .logo h2 {
  font-size: 18px;
  font-weight: bold;
  color: #ecf0f1;
}

.sidebar ul {
  list-style-type: none;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 16px;
  display: block;
}

.sidebar ul li a:hover {
  background-color: #34495e;
  padding-left: 10px;
  transition: all 0.3s;
}

/* Main Content Style */
.main-content {
  width: 100%;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 24px;
  color: #34495e;
}

header .user-info {
  display: flex;
  align-items: center;
}

header .user-info span {
  margin-right: 20px;
  color: #7f8c8d;
}

header .user-info button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

header .user-info button:hover {
  background-color: #c0392b;
}

/* Dashboard Cards */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background-color: #ecf0f1;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.card p {
  font-size: 24px;
  color: #e74c3c;
  font-weight: bold;
}
