/* Compose-page shell adjustments shared across mailbox views */
#emails-view {
  display: block;
}

#check-email,
#compose-view {
  display: none;
}

#compose-view {
  background: #fff;
}

/* Ensure compose route does not flash mailbox list on first paint. */
html[data-mail-boot-view="compose"] #compose-view {
  display: block;
}

html[data-mail-boot-view="compose"] #emails-view,
html[data-mail-boot-view="compose"] #check-email {
  display: none;
}

/* Prevent stacked list+detail during initial load on direct email routes. */
html[data-mail-boot-view="detail"] #check-email {
  display: block;
}

html[data-mail-boot-view="detail"] #emails-view,
html[data-mail-boot-view="detail"] #compose-view {
  display: none;
}
