/* Right Panel - Details */
.secuseek-details-modern {
  background: #E7F6EF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(34,173,90,0.06);
  padding: 24px 24px 24px 24px;
}
.secuseek-details-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.secuseek-details-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
  letter-spacing: -0.5px;
}
.secuseek-details-severity-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  background: transparent;
  border-radius: 8px;
  padding: 4px 16px 4px 10px;
  width: fit-content;
  font-weight: 500;
}
.secuseek-details-severity-info-row .secuseek-details-severity-icon,
.secuseek-details-severity-info-row .secuseek-details-info-icon {
  color: #6b7280 !important;
}

/* Severity color variables - only affect icon and badge, not row background */
.secuseek-details-severity-info-row.severity-high {
  --severity-color: #d32f2f;
  --severity-badge-bg: #ffeaea;
  --severity-badge-color: #d32f2f;
}
.secuseek-details-severity-info-row.severity-medium {
  --severity-color: #b08900;
  --severity-badge-bg: #fff7e0;
  --severity-badge-color: #b08900;
}
.secuseek-details-severity-info-row.severity-low {
  --severity-color: #22ad5a;
  --severity-badge-bg: #eaf7ee;
  --severity-badge-color: #22ad5a;
}
.secuseek-details-severity-info-row.severity-information {
  --severity-color: #2e5ee5;
  --severity-badge-bg: #eaf1ff;
  --severity-badge-color: #2e5ee5;
}
.secuseek-details-accordion {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid #e0ece6;
  box-shadow: 0 1px 4px rgba(34,173,90,0.04);
  overflow: hidden;
}
.secuseek-details-accordion-title {
  width: 100%;
  text-align: left;
  background: #f4fbf7;
  border: none;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 12px 8px 12px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2937;
  border-radius: 14px 14px 0 0;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
}
.secuseek-details-accordion-title:hover {
  background: #eaf8f2;
}
.secuseek-details-accordion-title .chevron {
  margin-left: auto;
  transition: transform 0.2s;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
}
.secuseek-details-accordion-title[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}
.secuseek-details-accordion-content {
  padding: 18px 28px 18px 32px;
  border-top: 1px solid #e0ece6;
  font-size: 15px;
  color: #374151;
  background: #fff;
  border-radius: 0 0 14px 14px;
}
.secuseek-details-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 8px;
}
.secuseek-details-table div {
  display: contents;
}
.secuseek-details-table span:nth-child(2n-1) {
  font-weight: 600;
  color: #374151;
}
.secuseek-details-table span:nth-child(2n) {
  color: #6b7280;
} 