/* General Styles */
body {
  margin: 0;

  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  display: flex;
  height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Sidebar Styles */
.sidebar {
  width: 16.666%; /* 1/6 */
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.logo-img {
  width: 92px;
  height: 33px;
  margin-right: -57px;
}
.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #555;
}

.menu {
  padding: 16px;
  overflow-y: auto;
}

.menu-section {
  margin-bottom: 24px;
}

.menu-title {
  display: block;
  font-size: 12px;
  color: #888;
  font-weight: bold;
  margin-bottom: 8px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 4px;
  color: #555;
  font-size: 14px;
  transition: background-color 0.3s;
}

.menu-item:hover {
  background-color: #f0f8ff;
}

.menu-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Navbar Styles */
.navbar {
  height: 64px;
  background-color: white;

  position: fixed;
  top: 0;
  right: 0;
  left: 16.666%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 10;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 24px;
  padding: 4px 12px;
  background-color: #fff;
}

.search-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.search-input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 200px;
  background: transparent;
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.icon {
  width: 20px;
  height: 20px;
}

.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #6b46c1;
  color: white;
  font-size: 10px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.user-info {
  text-align: right;
}

.user-name {
  font-size: 14px;
  font-weight: bold;
}

.user-role {
  font-size: 10px;
  color: #888;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* Main Content Styles */
.main {
  margin-left: 16.666%;
  width: calc(100% - 16.666%);
  margin-top: 64px;
}

.content {
  padding: 24px;
}

.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.page-description {
  color: #666;
  font-size: 16px;
}
.container {
  padding: 20px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .container {
    flex-direction: row;
  }
}

/* LEFT SECTION */
.left-section {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.user-card {
  background-color: #f7e6f6;
  padding: 10px;
  border-radius: 15px;
  flex: 1;
  height: 80px;

  position: relative;
}

.user-card.odd {
  background-color: #d8a7ea;
}

.user-card.even {
  background-color: #fef08a;
}

.user-card .year {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  background-color: white;
  padding: 4px 8px;
  border-radius: 12px;
  color: green;
}

.user-card h1 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  margin: 30px 0px -10px 0px;
}

.user-card h2 {
  font-size: 1rem;
  color: #6b7280;
  text-align: left;
  margin-bottom: 5px;
}

.user-card img {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* RIGHT SECTION */
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.announcement-card {
  background-color: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-header h1 {
  font-size: 1.2rem;
  font-weight: 600;
}

.announcement-header span {
  font-size: 0.8rem;
  color: #6b7280;
}

.announcement-item {
  background-color: #f9fafb;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.announcement-item h2 {
  font-size: 1rem;
  font-weight: 500;
}

.announcement-item span {
  font-size: 0.8rem;
  color: #6b7280;
}

.announcement-item p {
  font-size: 0.9rem;
  color: #4b5563;
}
.left_2 {
  display: flex;
}
.charts {
  flex: 1;
  margin: 5px;
  border: none;
}
.finance-chart {
  flex: 2;
  margin: 5px;
}
