.pkt-wrapper {
  margin: 20px 0;
}
.center{
    text-align:center;
}
.pkt-wrapper input,
.pkt-wrapper button {
  margin: 5px 0;
}

.pkt-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.pkt-wrapper th, .pkt-wrapper td {
  border: 1px solid #ddd;
  padding: 8px;
}

body {
  background: #f9f9f9;
  color: #333;
}

header { 
  background: #e60023;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 1.5rem;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

#dashboard {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

#dashboard h1 {
  margin-bottom: 1rem;
}

#seedForm {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

#seedForm input {
  flex: 1;
  max-width: 400px;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#seedForm button {
  background: #e60023;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
}

.pkt-wrapper .results {
  margin-top: 2rem;
  text-align: left;
}

.pkt-wrapper ul, .results ul {
  list-style: none;
  padding: 0;
}

.pkt-wrapper li, .results li {
  margin: 0.5rem;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 8px;
}

#pkt-analyze-btn, #pkt-download-csv, #analyzeBtn {
  margin-top: 1rem;
  background: #00a86b; 
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
}

.hidden {
  display: none;
}

section {
  margin-top: 3rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: #fff;
}
.analysis-table {
  margin-top: 2rem;
}

.analysis-table table {
  width: 100%;
  border-collapse: collapse;
}

.analysis-table th, .analysis-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  text-align: left;
}

.analysis-table th {
  background: #f2f2f2;
}

.analysis-table tr:nth-child(even) {
  background: #fafafa;
}

