
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f0f4f7;
}
.container {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 240px;
  background: linear-gradient(to bottom right, #89d8d3, #03c8a8);
  color: white;
  padding: 20px;
}
.sidebar .logo {
  width: 100%;
  margin-bottom: 20px;
}
.sidebar ul {
  list-style: none;
  padding-left: 0;
}
.sidebar li {
  margin: 15px 0;
}
.sidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.sidebar a:hover {
  text-decoration: underline;
}
.main-content {
  flex-grow: 1;
  padding: 30px;
}
h1 {
  margin-bottom: 20px;
}
.button-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.action-button {
  background-color: #03c8a8;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.action-button:hover {
  background-color: #028d7e;
}
.info-panels {
  display: flex;
  gap: 20px;
}
.panel {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.panel h2 {
  margin-top: 0;
}
.panel ul {
  padding-left: 20px;
}
