 .secuseek-dashboard-layout {
  font-family: "Segoe UI", Roboto, sans-serif;
  padding: 40px;
  background: #E7F6EF;
  max-width: 100%;
  margin: 0px;
  background-color: #E7F6EF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-left: -20px;
  }


.secuseek-login-overlay {
  position: absolute; /* dikkat: fixed yerine absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#E7F6EF;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  margin-left: -20px;
  padding-right: 20px;
  min-height: 100vh;
}


/* Blur efekt sadece içerik alanına uygulanacak */
.secuseek-blurred {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

/* HEADER */
.header {
  display: flex;
      flex-direction: row;
      align-items: center;
      text-align: center;
      justify-content: space-between;
      margin-top: -40px;
      background-color: white;
      padding: 20px 70px;
      margin-right: -40px;
      margin-left: -40px;
}

.header .brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header img {
  max-height: 30px;
  margin-bottom: 0; /* center align alongside badge */
  display: block; /* remove baseline gap */
}

.secuseek-beta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #068145;
  border: 1px solid #068145;
  border-radius: 999px;
  padding: 2px 8px;
  line-height: 1; /* compact height for better centering */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.subtitle {
  color: #272727;
  font-size: 18px;
}

/* LOGIN OVERLAY */

.secuseek-login-box {
  background: #fff;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  border-radius: 10px;
  text-align: center;
}

.secuseek-login-box h2 {
  margin-bottom: 20px;
}

.secuseek-login-box input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
}

.secuseek-login-box button {
  width: 100%;
  padding: 10px;
  background-color: #007cba;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.secuseek-login-box a {
  color: #007cba;
  font-size: 14px;
}

.secuseek-login-box p {
  font-size: 13px;
  margin-top: 15px;
}

/* INFO BLOCKS */
.secuseek-info-block {
  background: #E7F6EF;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.info-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  flex: 1 1 30%;
  min-width: 250px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Full width main content card */
.info-card.main-content {
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 24px;
}

/* Add spacing between main-content and bottom cards */
.info-features-bottom {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
}

.info-features-bottom .info-card {
  flex: 1 1 0;
}

@media (max-width: 700px) {
  .info-features-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

/* NOTICES */
.notice.error-box {
  border-left: 4px solid #d63638;
  background: #fef2f2;
  padding: 12px;
  color: #a60000;
  margin: 15px 0;
  border-radius: 4px;
}

.notice.notice-success {
  border-left: 4px solid #46b450;
  background: #e7f9ee;
  color: #155724;
  padding: 12px;
  border-radius: 4px;
}

/* Dashboard and general layout styles */

.secuseek-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Findings Page Specific Styles */

.secuseek-findings-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.secuseek-findings-stats .total-findings {
    font-size: 20px;
    font-weight: bold;
}

.secuseek-findings-stats .severity-badge {
    border-radius: 8px;
    padding: 4px 12px;
    font-weight: 500;
}

.secuseek-findings-stats .severity-badge.high {
    background: #f8d7da;
    color: #721c24;
}

.secuseek-findings-stats .severity-badge.medium {
    background: #fff3cd;
    color: #856404;
}

.secuseek-findings-stats .severity-badge.information {
    background: #e2e3f3;
    color: #383d52;
}

.secuseek-findings-stats .severity-badge.low {
    background: #d1ecf1;
    color: #0c5460;
}

.secuseek-last-update small {
    color: #666;
}

.noscript-warning {
    color: red;
    font-weight: bold;
}
