#app .framework-inspection-record {
  position: relative;
  overflow: visible;
  padding: 14px 52px 14px 14px;
  background: #fff;
  border-color: #dbe4ed;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(9, 30, 66, 0.08);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
#app .framework-inspection-record:hover,
#app .framework-inspection-record.is-selected,
#app .framework-inspection-record:focus-within {
  border-color: #b8c9da;
  box-shadow: 0 5px 16px rgba(9, 30, 66, 0.13);
}
#app .framework-inspection-record > header {
  align-items: flex-start;
  min-height: 34px;
}
#app .framework-inspection-record > header strong {
  line-height: 1.35;
}
#app .framework-inspection-comment {
  margin: 4px 0 2px;
  color: #17394d;
  font-size: 14px;
  line-height: 1.45;
}
#app .framework-inspection-menu {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 4;
  width: 32px;
  min-width: 32px;
  height: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
}
#app .framework-inspection-record:hover .framework-inspection-menu,
#app .framework-inspection-record.is-selected .framework-inspection-menu,
#app .framework-inspection-record:focus-within .framework-inspection-menu,
#app .framework-inspection-menu.active,
#app .framework-inspection-menu.visible {
  opacity: 1;
  pointer-events: auto;
}
#app .framework-inspection-menu-button.ui.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0;
  color: #2878b5;
  background: #fff;
  border: 1px solid #b8c9da;
  border-radius: 7px;
  box-shadow: 0 2px 5px rgba(9, 30, 66, 0.12);
}
#app .framework-inspection-menu-button.ui.button > i.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0 !important;
  line-height: 1;
}
#app .framework-inspection-menu > .menu {
  min-width: 178px;
  margin-top: 7px;
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(9, 30, 66, 0.2);
}
#app .framework-inspection-menu > .menu > .item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
}
#app .framework-inspection-menu > .menu > .item > i.icon {
  width: 18px;
  margin: 0 !important;
  text-align: center;
}
#app .framework-inspection-delete-item {
  color: #b63b32 !important;
}
html[data-interface-theme="dark"] #app .framework-inspection-record,
html[data-interface-theme="dark"] #app .framework-inspection-menu-button.ui.button {
  background: #252b32;
  border-color: #52606d;
}
html[data-interface-theme="dark"] #app .framework-inspection-comment {
  color: #eef3f7;
}
@media (hover: none), (pointer: coarse) {
  #app .framework-inspection-record:not(.is-selected):not(:focus-within) .framework-inspection-menu {
    opacity: 0;
    pointer-events: none;
  }
}
