.header-section{
display: flex;
justify-content: space-between;
}
.emergency-btn,
.sample-btn {
  background-color: #F5F5F5 !important;
color:#333;
  margin: 2px;
}
.upload-section{
margin-bottom:30px;
}
body .form-container,
body .result-container {
  background: #fff;
  border-radius: 10px;
  
  display: flex;
  flex-direction: column;

  
  margin-bottom: 20px;
}

body .sample-btn-container {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
}

body .sample-btn {
  background: #F5F5F5 !important;
  color: #333;
  border: none;
  padding: 0px 4px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
  font-family: "Relative", sans-serif;
}

body .sample-btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

body textarea {
  width: 100%;
  height: 500px;
  padding: 12px;
  font-size: 14px;
  font-family: "Courier New", monospace;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  resize: none;
  outline: none;
  box-sizing: border-box;
}

body .button-group {
  margin-top: 15px;
  display: flex;
  gap: 10px;
flex-wrap: wrap;
}

body button {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
  font-family: "Relative", sans-serif;
}

body .upload-btn {
  background: #f1f1f1;
  color: #333;
  position: relative;
  overflow: hidden;
}

body .upload-btn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

body .run-btn {
  background: #2563eb;
  color: #fff;
}

body .clear-btn {
  background: #f1f1f1;
  color: #333;
}

body button:hover {
  opacity: 0.9;
}

body button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Result container boxes */
body .section {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

body .section h3 {
  padding: 15px 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 600;
  margin-top: 0px;
  color: #333;
  border-bottom: 1px solid #e5e7eb;
  font-family: "Relative", sans-serif;
}

body .section p {
  padding: 0px 15px 10px 15px;
  font-size: 14px;
  color: #555;
  margin: 0;
  min-height: 60px;
  font-family: "Relative", sans-serif;
}

body .result-buttons {
  display: flex;
  gap: 10px;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
}

body .result-buttons button {
  padding: 8px 16px;
  border-radius: 8px;
}

body .re-run-btn {
  background: #f1f1f1;
  color: #333;
}

body .next-btn {
  background: #111827;
  color: #fff;
}

body .loading {
  display: none;
  text-align: center;
  padding: 10px;
 font-size: 15px !important;
  color: #2563eb;
}

body .error {
  color: #e53e3e;
  background-color: #fed7d7;
  padding: 10px;
   font-size: 15px !important;
  border-radius: 5px;
  margin: 10px 0;
  display: none;
}

body .success {
  color: #38a169;
  background-color: #f0fff4;
  padding: 10px;
 font-size: 15px !important;
  border-radius: 5px;
  margin: 10px 0;
  display: none;
}

/* Layout for containers */
.auxee-ai-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f9fafc;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .auxee-ai-wrapper {
    flex-direction: column;
    align-items: center;
  }

  body .form-container,
  body .result-container {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 500px;
  }
}
.recaptcha-container {
    margin: 10px 0;
    text-align: left;
    
    width:100%;
    border-radius: 4px;
}

.recaptcha-container .g-recaptcha {
    display: inline-block;
}

.run-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #cccccc;
}

.status-correct {
    color: #555;
   
    font-size: 14px;
}

.status-needs-correction {
    color: #555;
    
    font-size: 14px;
}

.status-unknown {
    color: #555;
    
    font-size: 14px;
}

.error-text {
    color: #dc3545;
    font-style: italic;
}