/* DiMail — minimal tweaks on default Modoboa theme */

/* Force sidebar to light gray — override Vuetify's inline color="primary" */
.v-navigation-drawer,
.v-navigation-drawer.v-navigation-drawer,
nav.v-navigation-drawer {
  background: #f9fafb !important;
  background-color: #f9fafb !important;
  color: #3c4043 !important;
}

/* Also override the content layer */
.v-navigation-drawer__content,
.v-navigation-drawer .v-navigation-drawer__content {
  background: #f9fafb !important;
  background-color: #f9fafb !important;
}

/* Mailbox items: reset ALL blue bg-primary variants to green */
.v-navigation-drawer .mailbox,
.v-navigation-drawer .mailbox[class*="bg-"],
.v-navigation-drawer .mailbox.bg-primary,
.v-navigation-drawer .mailbox.bg-white,
.v-navigation-drawer .v-list-item {
  background-color: transparent !important;
  background: transparent !important;
  color: #3c4043 !important;
}
.v-navigation-drawer .mailbox .v-icon,
.v-navigation-drawer .v-list-item .v-icon {
  color: #5f6368 !important;
}

/* Hover state */
.v-navigation-drawer .mailbox:hover {
  background-color: #e8f5e9 !important;
  background: #e8f5e9 !important;
  border-radius: 6px !important;
}

/* Active / selected mailbox: light green */
.v-navigation-drawer .mailbox.bg-primary-lighten-1 {
  background-color: #e8f5e9 !important;
  background: #e8f5e9 !important;
  color: #1b5e20 !important;
  border-radius: 6px !important;
}
.v-navigation-drawer .mailbox.bg-primary-lighten-1 .v-icon {
  color: #2d8b3e !important;
}

/* Space between logo and compose button */
.v-navigation-drawer .logo {
  margin-bottom: 16px !important;
}

/* Space between compose area and mailbox items */
.v-navigation-drawer .v-navigation-drawer__prepend {
  padding-bottom: 16px !important;
  margin-bottom: 8px !important;
  border-bottom: 1px solid #e0e0e0 !important;
}

/* Bottom settings bar: dark green */
.v-navigation-drawer .v-navigation-drawer__append,
.v-navigation-drawer__append,
.v-navigation-drawer .bg-grey,
.v-navigation-drawer__append .bg-grey,
.v-navigation-drawer__append .border-t-sm {
  background-color: #1b5e2b !important;
  background: #1b5e2b !important;
  border-top: none !important;
}
.v-navigation-drawer__append .v-btn,
.v-navigation-drawer__append .v-icon {
  color: rgba(255, 255, 255, 0.85) !important;
}
.v-navigation-drawer__append .v-btn:hover,
.v-navigation-drawer__append .v-btn:hover .v-icon {
  color: #ffffff !important;
}
.v-navigation-drawer__append .v-progress-linear {
  opacity: 0.7 !important;
}

/* ── Message area: info bar from blue to light green ── */
.v-alert.bg-info,
.v-alert[class*="bg-info"],
.v-alert.v-alert {
  background-color: #e8f5e9 !important;
  background: #e8f5e9 !important;
  color: #1b5e20 !important;
}
.v-alert .v-icon {
  color: #2d8b3e !important;
}
