
.notification-select-checkbox {
  margin-left: 16px !important;
  margin-right: 10px;
  width: 22px;
  height: 22px;
  align-self: center;
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Benachrichtigungsseite Styles */
.notifications-header-box {
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, #232323 0%, #660606 50%, #232323 100%);
  color: #d6ffd6;
  border-radius: 16px;
  padding: 32px 32px 32px 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 1100px;
  margin-left: 0;
}

.notifications-header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.notifications-header-icon {
  display: none; /* Initial ausblenden, JS blendet nach Daten-Load wieder ein */
  font-size: 28px;
  color: #ffbcbc;
  flex-shrink: 0;
}

.notifications-header-titlebox {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.notifications-header-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.notifications-header-actions button {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.notifications-header-actions button:hover {
  filter: brightness(0.92);
}

.mark-all-read-btn {
  background: #3ecf3e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  /* display: none; Initial ausblenden entfernt, JS steuert Sichtbarkeit */
}
.mark-all-read-btn:hover {
  background: #2ea82e;
}
.notifications-stats-row {
display: flex;
gap: 24px;
margin-bottom: 24px;
width: 1100px;
margin-left: 0;
}
.notifications-stat {
background: #181c20;
border-radius: 12px;
padding: 18px 32px;
color: #fff;
font-size: 1.1rem;
font-weight: 500;
display: flex;
flex-direction: column;
align-items: center;
min-width: 120px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
flex: 1;
}
.stat-count {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.notifications-stat-total { border-left: 4px solid #3a7cff; }
.notifications-stat-unread { border-left: 4px solid #ffb800; }
.notifications-stat-prio { border-left: 4px solid #ff3a3a; }
.notifications-stat-read { border-left: 4px solid #3ecf3e; }
.notifications-filter-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
  width: 1100px;
  margin-left: 0;
}
.notifications-filter-row input,
.notifications-filter-row select,
.notifications-filter-row button,
.select-all-row input[type="checkbox"] {
  box-sizing: border-box;
  height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #23272b;
  color: #fff;
  margin-right: 0;
  display: inline-block;
  margin-left: 0;
}
.select-all-row label {
  min-width: 180px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 40px;
}
.select-all-row input[type="checkbox"] {
  box-sizing: border-box;
  height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #23272b;
  color: #fff;
  margin-right: 0;
  display: inline-block;
  margin-left: 0;
}
.notifications-filter-row input {
  flex: 1;
  min-width: 220px;
  background: #181c20;
  border: 1px solid #23272b;
}
.notifications-filter-row button {
  background: #3a7cff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.notifications-filter-row button:hover {
  background: #2356a8;
}
/* Design für den Filter-zurücksetzen-Button */
.reset-filters-btn {
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.reset-filters-btn {
  background: #2976f6;
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.reset-filters-btn:hover {
  background: #2356a8;
}
.delete-all-btn {
  background: #d32f2f;
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  /* display: none; Initial ausblenden entfernt, JS steuert Sichtbarkeit */
}
.delete-all-btn:hover {
  background: #a62828;
}
.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 1100px;
  margin-left: 0;
}
.dropdown-notification {
  box-shadow: none;
  margin: 0;
}
/* Header-Message Styles */
.header-message {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(34,34,34,0.97);
  padding: 10px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 20000;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
}
.header-message-icon {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: -2px;
}
.header-message-success .header-message-icon,
.header-message-success .header-message-text {
  color: #2ecc40;
}
.header-message-error .header-message-icon,
.header-message-error .header-message-text {
  color: #d32f2f;
}
.header-message-warning .header-message-icon,
.header-message-warning .header-message-text {
  color: #f6c229;
}
.header-message-info .header-message-icon,
.header-message-info .header-message-text {
  color: #2976f6;
}
/* Modernes Modal für Benachrichtigung löschen */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99998;
}
.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #232323;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  min-width: 340px;
  max-width: 95vw;
  padding: 36px 32px 26px 32px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  animation: modalIn 0.22s cubic-bezier(.4,1.4,.6,1) 1;
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -60%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.modal-header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.modal-body {
  font-size: 16px;
  margin-bottom: 18px;
  color: #eee;
  line-height: 1.5;
}
.modal-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  width: 100%;
}
.modal-btn {
  background: #444;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.modal-btn:hover {
  background: #666;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.modal-btn-danger {
  background: #d32f2f;
  color: #fff;
  box-shadow: 0 2px 8px rgba(211,47,47,0.18);
  border: none;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.modal-btn-danger:hover {
  background: #a62828;
  box-shadow: 0 4px 16px rgba(211,47,47,0.22);
}

.modal-header, .modal-body, .modal-actions {
  margin-left: auto;
  margin-right: auto;
}
.notification-read-btn i,
.notification-delete-btn i {
    margin: 0 2px;
    cursor: pointer;
    position: relative;
}

.custom-tooltip {
  position: fixed;
  background: rgba(34,34,34,0.97);
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  z-index: 99999;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.18s cubic-bezier(.4,1.4,.6,1), transform 0.18s cubic-bezier(.4,1.4,.6,1);
}
.custom-tooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.notification-action-icon-check {
  color: #2ecc40 !important;
}
.notification-action-icon-trash {
  color: #d32f2f !important;
}

/* Notification Action Buttons */
.notification-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-left: 12px;
}
.notification-read-btn,
.notification-delete-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    outline: none;
}
/* Ungelesene Benachrichtigung: farbiger Karten-Hintergrund */
.notification-card.notification-success.unread {
    background: #233a2a;
    color: #fff;
}
.notification-card.notification-warning.unread {
    background: #3a3623;
    color: #fff;
}
.notification-card.notification-error.unread {
    background: #3a2323;
    color: #fff;
}
.notification-card.notification-info.unread {
    background: #232a3a;
    color: #fff;
}
/* Ungelesene Benachrichtigung: farbiger Icon-Hintergrund */
/* Kein farbiger Hintergrund für Icons bei ungelesen, nur die Farbe bleibt */
.notification-card .notification-check:not(:checked) ~ .notification-icon.notification-icon-success,
.notification-card .notification-check:not(:checked) ~ .notification-icon.notification-icon-warning,
.notification-card .notification-check:not(:checked) ~ .notification-icon.notification-icon-error,
.notification-card .notification-check:not(:checked) ~ .notification-icon.notification-icon-info {
    background: transparent;
    color: inherit;
    border-radius: 0;
    box-shadow: none;
}
.notification-card.notification-success {
    border-left: 4px solid #2ecc40;
}
.notification-card.notification-warning {
    border-left: 4px solid #f6c229;
}
.notification-card.notification-error {
    border-left: 4px solid #d32f2f;
}
.notification-card.notification-info {
    border-left: 4px solid #2976f6;
}
.notification-icon.notification-icon-success {
    color: #2ecc40 !important;
}
.notification-icon.notification-icon-warning {
    color: #f6c229 !important;
}
.notification-icon.notification-icon-error {
    color: #d32f2f !important;
}
.notification-icon.notification-icon-info {
    color: #2976f6 !important;
}
/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Dunkler Content-Hintergrund */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.fixed-header {
    background-color: #660606; /* Roter Header */
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
}
.logo {
    flex: 0 0 auto;
    margin-left: -10px;
}
.main-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}
.main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.main-menu li {
    margin: 0;
}
.main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}
.main-menu a:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}
.social-icons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
    margin-right: -10px;
}
.social-icons a {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 0 10px;
}

.logo {
    flex: 0 0 auto;
}
/* Hauptmenü mittig, Social rechts */
.main-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}
.main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.main-menu li {
    margin: 0;
}
.main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}
.main-menu a:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}
.social-icons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}
.social-icons a {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 0 10px;
}


/* Logo */
.logo img {
    height: 40px;
}

/* Navigation */
.main-menu ul {
    list-style: none;
    display: flex;
}

.main-menu li {
    margin-left: 20px;
}

.main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.main-menu a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: #ffffff;
    margin-left: 10px;
    font-size: 20px;
}

.emergency-number {
    margin-left: 15px;
    font-weight: bold;
}

/* Content Wrapper */
.content-wrapper {
    margin-top: 100px; /* Mehr Platz für fixierten Header */
    padding: 20px;
    width: 100%;
    flex: 1 0 auto;
    min-height: 0;
}


/* Nur .content.collapsed mit 100px Abstand */
.content.collapsed {
    margin-left: 100px !important;
    width: calc(100% - 100px) !important;
    padding: 40px 32px 0 80px !important;
}
.footer {
    background-color: #660606; /* Roter Footer */
    width: 100%;
    padding: 15px 20px 30px 20px;
    text-align: center;
    position: static;
    clear: both;
    flex-shrink: 0;
    margin: 0;
    z-index: 900;
    margin-top: auto; /* Footer rutscht bei flex-Layout ans Seitenende */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Footer immer volle Breite bei collapsed und normal */
.footer,
.footer.collapsed {
    left: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
}

/* Backend Layout */
.backend-wrapper {
display: flex; 
flex-direction: column; 
min-height: 100vh;

}
/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 240px;
    background: #660606;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 12px rgba(0,0,0,0.08);
    z-index: 1001;
    transition: width 0.2s;
}

.sidebar.collapsed {
    width: 60px;
}

.sidebar.collapsed .sidebar-text {
    display: none;
}

.sidebar.collapsed .sidebar-menu a {
    padding: 12px 0;
    justify-content: center;
}

.sidebar.collapsed .sidebar-menu i {
    margin-right: 0;
}

.sidebar.collapsed .sidebar-logo {
    justify-content: center;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed;
    top: 8px;
    left: 250px;
    background: #660606;
    color: #fff;
    border-radius: 25%;
    font-size: 16px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: left 0.2s;
    height: 40px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.3);
}

.sidebar-toggle.collapsed {
    left: 70px;
}

/* Sidebar Menü */
.sidebar-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.sidebar-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.sidebar-menu {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}
.sidebar-menu a.active,
.sidebar-menu a:hover {
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.3);
}
.sidebar-menu i {
  min-width: 25px;
  text-align: center;
  margin-right: 15px;
  font-size: 18px;
}

.backend-content h1 {
    color: #8B0000;
}
.backend-content p {
    color: white;
}

/* Header Icons & Dropdowns */
 .header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 8px;
}
.icon {
    position: relative;
    font-size: 22px;
    cursor: pointer;
}
.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #d32f2f;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    padding: 2px 7px;
    /* display: none; Initial ausblenden, JS blendet nach Daten-Load wieder ein */
}
/* Benachrichtigungs-Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: -20px;
    background: #2a2a2a;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    min-width: 320px;
    z-index: 1002;
    padding: 0 0 16px 0;
    border: 1px solid #444;
    font-size: 16px;
    /* entfernt, da nicht mehr benötigt */
}
.dropdown.open {
    display: block;
}
/* Notification Card im Dropdown */
.dropdown-notification {
    padding: 0;
    margin: 0;
    background: none;
}
.notification-card {
    display: flex;
    align-items: flex-start;
    background: #232323;
    border-radius: 8px;
    margin: 0 0 12px 0;
    padding: 12px 24px 12px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    position: relative;
}
.notification-check {
    margin: 8px 12px 0 8px;
    width: 18px;
    height: 18px;
}
.notification-icon {
    margin-left: 16px;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 22px;
    flex-shrink: 0;
}
.notification-content {
    flex: 1;
    min-width: 0;
}
.notification-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.notification-time {
    font-size: 13px;
    color: #aaa;
    margin-top: 2px;
}
.notification-text {
    font-size: 15px;
    color: #ccc;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Icon im Dropdown (keine Inline-Styles) */
.dropdown-inbox-icon {
    font-size: 48px;
    opacity: 0.5;
    margin-bottom: 12px;
    display: block;
}
.dropdown-header {
    padding: 16px 24px 8px 24px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid #333;
}
.dropdown-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 0 16px 0;
    color: #aaa;
    font-size: 17px;
}
.dropdown-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}
.dropdown-btn {
    display: block;
    width: 90%;
    margin: 0 auto;
    background: #660606;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    margin-top: 8px;
    transition: background 0.2s;
}
.dropdown-btn:hover {
    background: #a62828;
}

/* User-Dropdown Styling: Links garantiert untereinander */
.user-dropdown {
  background: #232323;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 0;
  min-width: 150px;
  border-radius: 10px;
 display: none; /* Initial ausblenden, nur per JS einblenden */
  flex-direction: column;
  border: 1px solid #444;
}
.user-dropdown-link {
 display: flex !important; /* Bei .open anzeigen */
  width: 100%;
  box-sizing: border-box;
  padding: 10px 18px;
  color: #eee;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid #333;
  transition: background 0.2s, color 0.2s;
}
.user-dropdown-link:last-child {
  border-bottom: none;
}
.user-dropdown-link:hover {
  background: #2a2a2a;
  color: #660606;
}
/* Haus-Dropdown Styling: identisch zum User-Dropdown */
.house-dropdown {
  background: #232323;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 0;
  min-width: 150px;
  border-radius: 10px;
  display: none; /* Initial ausblenden, nur per JS einblenden */
  flex-direction: column;
  border: 1px solid #444;
}
.house-dropdown-link {
  display: flex !important; /* Bei .open anzeigen */
  width: 100%;
  box-sizing: border-box;
  padding: 10px 18px;
  color: #eee;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid #333;
  transition: background 0.2s, color 0.2s;
}
.house-dropdown-link:last-child {
  border-bottom: none;
}
.house-dropdown-link:hover {
  background: #2a2a2a;
  color: #660606;
}

/* Suchleiste */
.search-bar {
    flex: 0 0 220px;
    margin-left: 120px;
    max-width: 220px;
    position: relative;
    transition: margin-left 0.2s;
}
 .search-bar input {
    width: 100%;
    padding: 8px 36px 8px 12px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}
.search-bar .fa-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #660606;
    font-size: 16px;
    pointer-events: none;
}


.backend-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content {
    margin-left: 240px;
    padding: 40px 32px 0 40px;
    background-color: #2a2a2a;
    border-radius: 5px;
    max-width: 1200px;
    min-height: calc(100vh - 100px);
    transition: margin-left 0.2s;
}

.backend-content {
    margin-left: 220px;
    padding: 80px 10px 0 80px;
    transition: margin-left 0.2s;
    flex: 1 0 auto;
}
.backend-content.collapsed {
    margin-left: 100px !important;
    width: calc(100% - 100px) !important;
    padding: 10px 32px 0 80px !important;
}
