.eac-container {
  max-width: 1050px;
}

.eac-intro,
.eac-blink {
  margin-bottom: 18px;
}

.eac-grid-2,
.eac-status-grid {
  display: grid;
  gap: 16px;
}

.eac-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.eac-status-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 20px;
}

.eac-label {
  display: block;
  margin-bottom: 10px;
  color: #32145f;
  font-weight: 600;
}

.eac-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4c5fb;
  border-radius: 12px;
  background: #fcfbff;
  color: #28175a;
  font-size: 1rem;
}

.eac-input:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.eac-optional {
  color: #7e6aa8;
  font-weight: 400;
}

.eac-result {
  margin-top: 24px;
}

.eac-status-card,
.eac-panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e3dcfb;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(49, 18, 95, 0.06);
}

.eac-status-card span {
  display: block;
  color: #685a8d;
  margin-bottom: 8px;
}

.eac-status-card strong {
  font-size: 1.25rem;
  color: #27165b;
}

.eac-sections {
  margin-bottom: 18px;
}

.eac-list {
  display: grid;
  gap: 12px;
}

.eac-item {
  padding: 12px;
  border-radius: 10px;
  background: #faf8ff;
  border: 1px solid #ebe5ff;
}

.eac-item.warn {
  background: #fff6e8;
  border-color: #ffe1a6;
  color: #905500;
}

.eac-item.good {
  background: #effaf3;
  border-color: #ccefd7;
  color: #0c6d31;
}

.eac-raw {
  display: grid;
  gap: 14px;
}

.eac-raw-block {
  padding: 14px;
  border-radius: 10px;
  background: #faf8ff;
  border: 1px solid #ebe5ff;
}

.eac-raw-block strong {
  display: block;
  margin-bottom: 8px;
  color: #30195f;
}

.eac-code {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: Consolas, Monaco, monospace;
  color: #45386c;
}


.eac-mainarea .eac-grid-2 {
  margin-bottom: 8px;
}

.eac-actions {
  margin-top: 10px;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 768px) {
  .eac-actions {
    margin-top: 8px;
  }
}
