/* docs/stylesheets/alnoms_engine.css */

/* --- TEXT AREA & OUTPUT BOX --- */
#alnoms-input {
  width: 100%;
  background: #0b1020;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  resize: vertical;
}

#alnoms-input:focus {
  outline: none;
  border-color: #009688; /* Matches your Teal primary color */
}

#alnoms-output {
  background: #050816;
  color: #f5f5f5;
  padding: 16px;
  border-radius: 8px;
  max-height: 400px;
  overflow-y: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

#alnoms-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
  font-family: sans-serif;
}


/* --- ACTION BUTTONS (Hero Section) --- */
.alnoms-btn-group {
    display: flex; 
    gap: 12px; 
    margin-top: 12px;
    margin-bottom: 16px;
}

.alnoms-action-btn {
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

/* Primary Action (Analyze) */
.btn-run-fast {
    background-color: #009688; 
    color: white !important;
    border: 2px solid #009688;
}

.btn-run-fast:hover {
    background-color: #00796B;
    border-color: #00796B;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Secondary Action (Deep Analyze) */
.btn-run-deep {
    background-color: transparent;
    color: #009688 !important;
    border: 2px solid #009688;
}

.btn-run-deep:hover {
    background-color: rgba(0, 150, 136, 0.05);
}