:root {
    --sidebar-width: 250px;
    --topbar-height: 60px;
    --primary-color: #4e73df;
    --dark-color: #2c3e50;
    --container-width: 800px;
    --bs-heading-color: black;
}
body {
    padding-top: var(--topbar-height);
    padding-left: var(--sidebar-width);
    min-height: 100vh;
    background-color: #f8f9fc;
    transition: all 0.3s;
}
.main-content {
    padding: 0;
    min-height: calc(100vh - var(--topbar-height));
}
.card {
    border: none;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
}
.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    padding: 1rem 1.35rem;
}
.full-width-container {
    width: 100%;
    padding: 1px;
    background: white;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    /*margin-bottom: 1.5rem;*/
    height: calc(100vh - 60px);
}
.centered-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-left: 0;
    }
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .top-navbar {
        left: 0;
    }
}
/* Toggle button for mobile */
.sidebar-toggler {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
@media (max-width: 768px) {
    .sidebar-toggler {
        display: block;
    }
}
.search-container {
  /*margin-bottom: 20px;*/
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 0.95em;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  color: #374151;
  transition: all 0.2s ease;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  width: 18px;
  height: 18px;
}

.clear-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  padding: 2px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: none;
}

.clear-button:hover {
  background: #d1d5db;
  color: #374151;
}

.clear-button.hidden {
  display: none;
}

.no-results {
  text-align: center;
  padding: 20px;
  color: #6b7280;
  font-style: italic;
}

.highlight {
  background-color: #fef08a;
  padding: 0 2px;
  border-radius: 2px;
}

.hidden-node {
  display: none;
}
.datetime {
    color: #adb5bd;
    padding: 0px 15px;
    position: relative;
    top: 17px;
}