body {
    background: #f6f8fa;
    font-family: Arial, sans-serif;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-left: 8px;
    border-left: 4px solid #5ac8fa;
}

.header-block {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.robot-placeholder {
    width: 170px;
    height: 180px;
    background: linear-gradient(145deg, #e3e9ef, #ffffff);
    border: 1px solid #d0d6dd;
    border-radius: 12px;
}

.description {
    color: #555;
    line-height: 1.5;
    font-size: 15px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.label {
    display: block;
    color: #333;
    margin: 15px 0 5px;
    font-size: 14px;
    font-weight: bold;
}

.input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd5dc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.button {
    margin-top: 20px;
    background: #5ac8fa;
    color: white;
    border: none;
    padding: 12px 22px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.button:hover {
    background: #3bb8f5;
}

.field-container{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
align-items: start;
}

.section {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 1px solid #e5e7eb;
  color: #111827;
}

.field-container{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;

}

.field-block{
  display: flex;
  flex-direction: column;
}

.field-block .label{
  line-height: 1.2;
  min-height: calc(1.2em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 24px;
  align-items: start;
}

.result-column {
  position: sticky;
  top: 20px;
}



@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .result-column {
    position: static;
  }
}

.details{
    font-size: 12px;
    font-weight: lighter;
}

.footer{
    margin-top: 30px;
    text-align: center;
    font-style: italic;
}