/* Left Panel - Finding Cards */
.secuseek-finding-list {
  padding: 0 10px;
  list-style: none;
  max-height: 800px;
  overflow-y: auto;
  margin-top: 0px;
}
.secuseek-finding-item {
  color: rgb(42, 53, 71);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  background-image: none;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  cursor: pointer;
  width: 100%;
  min-height: 90px;
  flex-shrink: 0;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 7px;
  overflow: hidden;
  gap: 4px;
  border: none;
  margin-bottom: 15px;
  box-sizing: border-box;
}
.secuseek-finding-item:hover {
  background-color: #fff;
}
.secuseek-finding-item.active {
  color: rgb(42, 53, 71);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  background-image: none;
  background-color: rgb(236, 242, 255) !important;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  cursor: pointer;
  width: 100%;
  min-height: 90px;
  flex-shrink: 0;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 7px;
  overflow: hidden;
  gap: 4px;
  border: none !important;
}
/* Remove severity border color from card */
.secuseek-finding-item.severity-high,
.secuseek-finding-item.severity-medium,
.secuseek-finding-item.severity-low,
.secuseek-finding-item.severity-information {
  border-left-color: #f3f4f6;
}
.secuseek-finding-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  min-height: 18px;
  gap: 12px;
}
.secuseek-finding-title {
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}
.secuseek-badge {
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  min-width: 54px;
  text-align: center;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.secuseek-card-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 0px 5px;
  padding: 2px 5px;
  font-size: 12px;
}
.badge-high { background-color: #fee2e2; color: #b91c1c; }
.badge-medium { background-color: #ffedd5; color: #9a3412; }
.badge-low { background-color: rgb(224, 248, 253); color: rgb(13, 202, 240); }
.badge-information {background-color: rgb(225, 232, 254); color: rgb(96, 133, 255); }
.secuseek-finding-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}
.meta-tag {
  color: rgb(42, 53, 71);
  background-color: rgb(223, 229, 239);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
}
.meta-domain {
  color: #4b5563;
  font-size: 12px;
}
.meta-id {
  margin-left: auto;
  color: #9ca3af;
  font-family: monospace, monospace;
  font-size: 12px;
} 