*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100vh;
  background: linear-gradient(to bottom, #EBEDFD, #FDFCF3 70%, #B5DAFF);
  transition: background 0.3s ease;
}
html[data-theme=dark] {
  background: linear-gradient(to bottom, #1a1b26, #1f2937 70%, #111827);
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html[data-theme=dark] body {
  color: #e5e7eb;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2563eb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0;
}

.header-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.25rem 0 0 0;
}

.main {
  flex: 1;
  padding-bottom: 3rem;
}

.footer {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
}
html[data-theme=dark] .footer {
  background: #111827;
  border-top-color: #374151;
}

.footer p {
  margin-bottom: 0;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.p-sm {
  padding: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}
.btn-primary:hover {
  background-color: #1e40af;
}

.btn-success {
  background-color: #10b981;
  color: white;
}
.btn-success:hover {
  background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #1f2937;
}
.btn-secondary:hover {
  background-color: rgb(228.4285714286, 230.6428571429, 235.0714285714);
}

.btn-danger {
  background-color: #ef4444;
  color: white;
}
.btn-danger:hover {
  background-color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
html[data-theme=dark] .card {
  background: #1f2937;
  border-color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
html[data-theme=dark] .card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border-color: #4b5563;
}

.card-clickable {
  cursor: pointer;
}
.card-clickable:hover {
  border-color: #2563eb;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-high {
  background-color: rgb(253.0689655172, 232.4310344828, 232.4310344828);
  color: #ef4444;
}

.badge-medium {
  background-color: rgb(252.0275590551, 226.1673228346, 182.4724409449);
  color: rgb(147.937007874, 95.188976378, 6.062992126);
}

.badge-low {
  background-color: rgb(200.5, 216, 250);
  color: #2563eb;
}

.badge-open {
  background-color: rgb(200.5, 216, 250);
  color: #2563eb;
}

.badge-in-progress {
  background-color: rgb(252.0275590551, 226.1673228346, 182.4724409449);
  color: rgb(147.937007874, 95.188976378, 6.062992126);
}

.badge-completed {
  background-color: rgb(134.8880597015, 244.6119402985, 208.2537313433);
  color: #10b981;
}

.badge-dismissed {
  background-color: #f3f4f6;
  color: #6b7280;
}

.form-group {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.input,
.textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: all 0.2s;
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.input::placeholder,
.textarea::placeholder {
  color: #6b7280;
}
html[data-theme=dark] .input,
html[data-theme=dark] .textarea {
  background: #4b5563;
  border-color: #4b5563;
  color: #e5e7eb;
}
html[data-theme=dark] .input:focus,
html[data-theme=dark] .textarea:focus {
  border-color: #3b82f6;
  background: #1f2937;
}

.textarea {
  min-height: 100px;
  resize: vertical;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.chat-message {
  padding: 1rem;
  border-radius: 8px;
  max-width: 80%;
  word-wrap: break-word;
}

.chat-message-user {
  background-color: #2563eb;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message-assistant {
  background-color: white;
  color: #1f2937;
  align-self: flex-start;
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 4px;
}
html[data-theme=dark] .chat-message-assistant {
  background-color: #1f2937;
  color: #e5e7eb;
  border-color: #374151;
}

.chat-form {
  display: flex;
  gap: 0.5rem;
}
.chat-form .input {
  flex: 1;
}
.chat-form .btn {
  white-space: nowrap;
}

.progress {
  background-color: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
  height: 8px;
  margin: 1rem 0;
}

.progress-bar {
  height: 100%;
  background-color: #10b981;
  transition: width 0.3s ease;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.breadcrumb a {
  color: #2563eb;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .separator {
  color: #6b7280;
}

.artifact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artifact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f3f4f6;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.artifact-item:hover {
  background: rgb(237.1714285714, 238.6571428571, 241.6285714286);
}

.artifact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.artifact-icon {
  font-size: 1.5rem;
}

.artifact-title {
  font-weight: 500;
}

.artifact-meta {
  font-size: 0.875rem;
  color: #6b7280;
}

.artifact-actions {
  display: flex;
  gap: 0.5rem;
}

.text-link {
  color: #2563eb;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.text-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

.agent-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .agent-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .agent-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .agent-cards::-webkit-scrollbar {
    display: none;
  }
  .agent-cards .card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

.actions-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}
.stat-item .stat-value-sm {
  font-size: 1rem;
  font-weight: 300;
  color: #1f2937;
  margin: 0;
}

.config-text {
  font-size: 1rem;
  color: #1f2937;
  margin: 0;
  font-weight: 500;
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.file-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.file-item:last-child {
  border-bottom: none;
}

.file-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.file-link:hover {
  text-decoration: underline;
}

.file-meta {
  color: #6b7280;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.markdown-body {
  color: #1f2937;
  line-height: 1.6;
}
.markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.markdown-body h1 {
  font-size: 1.5rem;
}
.markdown-body h2 {
  font-size: 1.25rem;
}
.markdown-body h3 {
  font-size: 1.125rem;
}
.markdown-body p {
  margin-bottom: 1rem;
}
.markdown-body ul, .markdown-body ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.markdown-body li {
  margin-bottom: 0.25rem;
}
.markdown-body code {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.markdown-body pre {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.markdown-body pre code {
  background: none;
  padding: 0;
}
.markdown-body blockquote {
  border-left: 3px solid #2563eb;
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1rem;
  color: #6b7280;
}
.markdown-body hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}
.markdown-body strong {
  font-weight: 600;
}
.markdown-body em {
  font-style: italic;
}
.markdown-body a {
  color: #2563eb;
  text-decoration: none;
}
.markdown-body a:hover {
  text-decoration: underline;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  color: white;
  font-size: 1rem;
  width: 100%;
  justify-content: space-between;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}
.theme-toggle .theme-icon {
  font-size: 1.5rem;
}

.agents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .agents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agent-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}
.agent-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: #2563eb;
}
.agent-card.selected {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.agent-card.paused {
  opacity: 0.7;
  background: #f3f4f6;
}
html[data-theme=dark] .agent-card {
  background: rgb(36.5151162791, 48.2941860465, 64.7848837209);
  border-color: rgb(65.3125, 77.1875, 96.1875);
}
html[data-theme=dark] .agent-card:hover {
  border-color: #2563eb;
}
html[data-theme=dark] .agent-card.paused {
  background: #1f2937;
  opacity: 0.6;
}

.agent-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.agent-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
  flex: 1;
}
html[data-theme=dark] .agent-name {
  color: #e5e7eb;
}

.agent-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.metric-label {
  color: #6b7280;
  font-weight: 500;
}
html[data-theme=dark] .metric-label {
  color: #9ca3af;
}

.metric-value {
  color: #1f2937;
  font-weight: 600;
}
.metric-value.text-muted {
  color: #6b7280;
  font-weight: 500;
}
html[data-theme=dark] .metric-value {
  color: #e5e7eb;
}
html[data-theme=dark] .metric-value.text-muted {
  color: #9ca3af;
}

.agent-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}
.agent-controls button {
  flex: 1;
}
html[data-theme=dark] .agent-controls {
  border-top-color: rgb(65.3125, 77.1875, 96.1875);
}

.new-agent-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  min-height: 280px;
}
.new-agent-card:hover {
  background: rgb(247.2142857143, 249.4285714286, 254.2857142857);
  border-color: #2563eb;
}
html[data-theme=dark] .new-agent-card:hover {
  background: rgba(99, 102, 241, 0.1);
}

.new-agent-content {
  text-align: center;
}

.new-agent-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #1f2937;
}
.btn-ghost:hover {
  background: #f3f4f6;
  border-color: #2563eb;
}
html[data-theme=dark] .btn-ghost {
  border-color: rgb(65.3125, 77.1875, 96.1875);
  color: #e5e7eb;
}
html[data-theme=dark] .btn-ghost:hover {
  background: rgb(40.1918604651, 53.1569767442, 71.3081395349);
  border-color: #2563eb;
}

.gap-sm {
  gap: 0.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-item .metric-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}
html[data-theme=dark] .metric-item .metric-value {
  color: #e5e7eb;
}

.agent-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .agent-detail-layout {
    flex-direction: row;
    gap: 2rem;
  }
}

.agent-detail-column {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .agent-detail-column {
    max-width: 400px;
  }
}

.agent-actions-column {
  flex: 2;
  min-width: 0;
}

.agent-detail-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.actions-filter-select {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s;
}
.actions-filter-select:hover {
  border-color: #2563eb;
}
.actions-filter-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
html[data-theme=dark] .actions-filter-select {
  background: #1f2937;
  border-color: #374151;
  color: #e5e7eb;
}
html[data-theme=dark] .actions-filter-select:hover {
  border-color: #2563eb;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.active {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
html[data-theme=dark] .navbar.active {
  background-color: #1f2937;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  margin: 0 auto;
}
html[data-theme=dark] .navbar-brand {
  color: #e5e7eb;
}

.navbar-brand:hover {
  text-decoration: none;
}

.navbar.active .navbar-brand {
  color: #333;
}

.sidemenu .toggle {
  width: 24px;
  height: 18px;
  position: relative;
  padding: 10px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2000;
}

.sidemenu .toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 24px;
  background: #333;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
html[data-theme=dark] .sidemenu .toggle span {
  background: #e5e7eb;
}

.sidemenu .toggle span:nth-child(1) {
  top: 0px;
  width: 85%;
}

.sidemenu .toggle span:nth-child(2) {
  top: 8px;
}

.sidemenu .toggle span:nth-child(3) {
  top: 16px;
  width: 65%;
}

.sidemenu .toggle.open span:nth-child(1) {
  top: 8px;
  width: 28px;
  height: 4px;
  transform: rotate(135deg);
}

.sidemenu .toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.sidemenu .toggle.open span:nth-child(3) {
  top: 8px;
  width: 28px;
  height: 4px;
  transform: rotate(-135deg);
}

.sidemenu-main {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.sidemenu-open {
  overflow-y: hidden;
}

.sidemenu-open .sidemenu-main {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sidemenu-left {
  z-index: 1001;
  position: relative;
  height: 100vh;
  width: 100%;
  max-width: 600px;
  padding: 0 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sidemenu-left ul {
  list-style: none;
  padding-top: 8vh;
  margin-top: 1rem;
  padding-bottom: 3vh;
  flex-grow: 1;
}

.sidemenu-left ul li {
  padding: 0.5rem 0;
  margin: 0;
}

.sidemenu-left ul li h3 {
  padding: 0;
  margin: 0;
  font-size: 2rem;
}

.sidemenu-left ul li h3 a {
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.sidemenu-left ul li h3 a:hover {
  opacity: 0.8;
}

.sidemenu-left ul.nav-secondary {
  list-style: none;
  padding: 1rem 0 0 1.5rem;
  margin: 0;
}
.sidemenu-left ul.nav-secondary li {
  padding: 0.25rem 0;
}
.sidemenu-left ul.nav-secondary a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  transition: opacity 0.2s;
}
.sidemenu-left ul.nav-secondary a:hover {
  opacity: 0.8;
}

.sidemenu-left footer {
  padding: 2rem 0;
}

.sidemenu-right {
  position: fixed;
  width: 100%;
  height: 100vh;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

@media (max-width: 768px) {
  .sidemenu-left {
    max-width: 100%;
  }
  .sidemenu-right {
    display: none;
  }
}
@media (min-width: 769px) {
  .sidemenu-left {
    max-width: 40%;
  }
}