/* Global Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #1e1e2e, #14141e);
  color: #FFF;
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.sidebar .logo {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.sidebar .menu ul {
  list-style: none;
  padding: 0;
}

.sidebar .menu ul li {
  margin: 20px 0;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}

.sidebar .menu ul li.active,
.sidebar .menu ul li:hover {
  color: #76c7c0;
}

/* Content */
.content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header input {
  padding: 10px;
  border: none;
  border-radius: 20px;
  background: #444;
  color: #FFF;
}

.widgets {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.widget {
  flex: 1;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Circles */
.circle {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: conic-gradient(#76c7c0 60%, #444 0%);
  margin: auto;
}

/* Statistics and Details */
.stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat-box {
  flex: 1;
  background: #333;
  padding: 20px;
  border-radius: 10px;
}

.details {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.detail-card {
  flex: 1;
  background: #333;
  padding: 20px;
  border-radius: 10px;
}
