/* تنسيق القائمة الجانبية */
.sidebar {
  width: 250px;
  height: 100vh;
  background-color: #2c3e50;
  color: white;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

/* تنسيق رأس القائمة */
.sidebar-header {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #34495e;
}

.sidebar-logo {
  width: 80px;
  margin-bottom: 10px;
}

/* تنسيق معلومات المستخدم */
.sidebar-user {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #34495e;
}

/* تنسيق قائمة الأزرار */
.sidebar-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

/* تنسيق تذييل القائمة */
.sidebar-footer {
  padding: 1rem;
  border-top: 1px solid #34495e;
}

/* تنسيق الأزرار */
.sidebar-button {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: transparent;
  color: white;
  border: none;
  text-align: right;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 0.25rem;
  border-radius: 4px;
}

.sidebar-button:hover {
  background-color: #34495e;
}

.sidebar-button.active {
  background-color: #3498db;
}

/* تنسيق أيقونات الأزرار */
.sidebar-icon {
  margin-left: 10px;
  font-size: 18px;
}

/* تنسيق زر إدارة المستخدمين */
.admin-button {
  background-color: #2980b9;
  margin-bottom: 0.5rem;
}

.admin-button:hover {
  background-color: #3498db;
}

/* تنسيق زر تسجيل الخروج */
.logout-button {
  background-color: #e74c3c;
}

.logout-button:hover {
  background-color: #c0392b;
}

/* تنسيق المحتوى الرئيسي */
.main-content {
  margin-right: 250px;
  padding: 1rem;
  min-height: 100vh;
}