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

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

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;

  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;
}
