.site-header {
  /* Slightly darker than body background for subtle depth */
  background: rgb(224.2, 232.6, 238.2);
  border-bottom: 1px solid #e1e8ed;
  padding: 1.8rem 0;
  width: 100%;
  /* Ensures no internal elements trigger a scrollbar */
  box-sizing: border-box;
}
.site-header .header-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* Horizontal padding keeps the icon and title away from the screen edges */
  padding: 0 3rem;
  box-sizing: border-box;
}
.site-header {
  /* Side items take equal space (1/4 each) to keep the center item dead-center */
}
.site-header .header-side-item {
  flex: 1;
  display: flex;
  align-items: center;
}
.site-header .header-side-item.text-end {
  /* Pushes the user icon to the far right edge of its container */
  justify-content: flex-end;
}
.site-header {
  /* Center item takes double space (2/4) */
}
.site-header .header-center-item {
  flex: 2;
  text-align: center;
}
.site-header .navbar-title {
  color: #0f4c81;
  font-size: 1.4rem;
  font-weight: 400; /* Normal weight, not bolded */
  margin: 0;
  white-space: nowrap;
}
.site-header .user-profile-link {
  text-decoration: none; /* Removes underline from the icon link */
  font-size: 1.8rem;
  color: #0f4c81; /* Matches header text color */
  display: inline-flex;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.site-header .user-profile-link i {
  display: block;
  /* Ensures no browser-added underline on the icon font */
  text-decoration: none !important;
}
.site-header .user-profile-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.site-footer {
  background-color: #f4f7f9;
  padding: 2rem 0;
  margin-top: auto;
  text-align: center;
  border-top: 1px solid #e1e8ed;
}
.site-footer .footer-privacy-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  /* Unified Brand Color */
  color: #0f4c81;
  margin-bottom: 12px; /* Added gap between rows */
}
.site-footer .footer-privacy-row strong {
  color: inherit;
  font-weight: 600;
  margin-right: 6px;
}
.site-footer .footer-privacy-row i {
  opacity: 0.8;
}
.site-footer .footer-copyright {
  font-size: 0.75rem;
  /* Unified Brand Color with lower opacity */
  color: #0f4c81;
  opacity: 0.8;
}

.report-controls {
  background: #ffffff;
  border: 2px dashed #e1e8ed;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  transition: all 0.2s ease;
}
.report-controls:hover {
  border-color: #0f4c81;
  background-color: rgba(15, 76, 129, 0.02);
}
.report-controls .btn-add-report {
  width: 100%;
  padding: 2rem; /* Nice and tall */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  color: #0f4c81;
  font-weight: 600;
  font-size: 1.1rem;
}
.report-controls .btn-add-report i {
  font-size: 1.4rem;
}

/* The List Container */
.report-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual Report Card (Static, No Hover Transform) */
.report-card {
  background: #ffffff;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: grid;
  /* Updated Column order: Info, Status, Timeline, Actions */
  grid-template-columns: 2.2fr 1.2fr 1.8fr 1.2fr;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 1. Patient Info Column */
.patient-name {
  display: block;
  font-weight: 600;
  font-size: 1.15rem;
  color: #0f4c81;
  margin-bottom: 2px;
}

.report-type {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 2. Status Column (Larger Pill) */
.status-pill {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  width: fit-content;
  letter-spacing: 0.3px;
}
.status-pill.pending {
  background: #fef9c3;
  color: #854d0e;
}
.status-pill.complete {
  background: #dcfce7;
  color: #166534;
}

/* 3. Timeline Column */
.report-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid #e1e8ed;
  padding-left: 1.5rem;
}
.report-timeline .time-item {
  font-size: 0.85rem;
  display: flex;
  gap: 10px;
}
.report-timeline .time-label {
  color: #64748b;
  width: 70px;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.report-timeline .time-value {
  color: #334155;
  font-weight: 500;
}

/* 4. Unified Action Buttons */
.report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}
.report-actions .btn-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  outline: none;
  padding: 0;
  font-size: 1.1rem;
}
.report-actions .btn-icon.btn-primary-action {
  background-color: rgba(15, 76, 129, 0.08);
  color: #0f4c81;
}
.report-actions .btn-icon.btn-primary-action:hover {
  background-color: #0f4c81;
  color: white;
  transform: translateY(-2px);
}
.report-actions .btn-icon.delete {
  background-color: #fff1f2;
  color: #e11d48;
}
.report-actions .btn-icon.delete:hover {
  background-color: #e11d48;
  color: white;
  transform: translateY(-2px);
}

/* Container & Progress */
.interview-container {
  max-width: 800px; /* Widened for better form layout */
  margin: 0 auto;
}

.interview-progress {
  margin-bottom: 3.5rem;
}
.interview-progress .progress-track {
  height: 4px;
  background: #e1e8ed;
  border-radius: 10px;
  overflow: hidden;
}
.interview-progress .progress-fill {
  height: 100%;
  background: #0f4c81;
  transition: width 0.5s ease;
}

/* Question Header */
.interview-question {
  font-weight: 400;
  font-size: 1.75rem;
  color: #0f4c81;
  margin: 0 0 2rem 0;
}

/* Report Type Card Styles */
.option-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.option-card {
  display: block;
  border: 1px solid #e1e8ed;
  border-radius: 16px;
  padding: 1.5rem;
  background: white;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.option-card input[type=radio] {
  position: absolute;
  opacity: 0;
}
.option-card .option-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.option-card .option-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(15, 76, 129, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f4c81;
  font-size: 1.2rem;
}
.option-card .option-text {
  flex: 1;
}
.option-card .option-text strong {
  display: block;
  color: #0f4c81;
  font-size: 1.1rem;
}
.option-card .option-text span {
  color: #64748b;
  font-size: 0.9rem;
}
.option-card .option-check {
  color: #0f4c81;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.option-card.active {
  border-color: #0f4c81;
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}
.option-card.active .option-check {
  opacity: 1;
}
.option-card:hover {
  background: rgba(15, 76, 129, 0.01);
}

/* Form & Input Styles */
.interview-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e1e8ed;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}
.form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-row .form-group.flex-2 {
  flex: 2.5;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #fcfdfe;
  color: #0f4c81;
  font-family: inherit;
  transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #0f4c81;
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}
.form-group textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.form-divider {
  height: 1px;
  background: #e1e8ed;
  margin: 0.5rem 0;
}

/* Checkbox & Inline Input Logic */
.checkbox-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.checkbox-group .check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #0f4c81;
}
.checkbox-group .check-item input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
  margin: 0;
  cursor: pointer;
  accent-color: #0f4c81;
}
.checkbox-group .check-item-with-input {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.checkbox-group .check-item-with-input .inline-input {
  padding: 6px 12px;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  width: 240px; /* Wider for placeholder text */
  font-size: 0.9rem;
  background-color: #fcfdfe;
  transition: all 0.2s ease;
}
.checkbox-group .check-item-with-input .inline-input:disabled {
  background-color: #f1f5f9;
  cursor: not-allowed;
  border-color: transparent;
  color: #94a3b8;
}
.checkbox-group .check-item-with-input .inline-input:disabled::placeholder {
  color: #cbd5e1;
}
.checkbox-group .check-item-with-input .inline-input:enabled {
  background-color: #ffffff;
  border-color: #0f4c81;
  color: #0f4c81;
}

/* Custom Dropdown Arrow */
select.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org' fill='none' viewBox='0 0 24 24' stroke='%230f4c81'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

/* Navigation Buttons */
.interview-nav {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.interview-nav .nav-left, .interview-nav .nav-right {
  display: flex;
  gap: 1rem;
}
.interview-nav .btn-nav {
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.interview-nav .btn-back {
  background: #f1f5f9;
  color: #475569;
}
.interview-nav .btn-back:hover {
  background: #e2e8f0;
}
.interview-nav .btn-save-close {
  background: white;
  color: #0f4c81;
  border-color: #0f4c81;
}
.interview-nav .btn-save-close:hover {
  background: rgba(15, 76, 129, 0.05);
}
.interview-nav .btn-continue {
  background: #0f4c81;
  color: white;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.15);
}
.interview-nav .btn-continue:hover {
  background: rgb(10.75, 54.4666666667, 92.45);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
body {
  background-color: #f4f7f9;
  font-family: "Inter", -apple-system, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.main-content {
  padding: 3rem 2rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  flex: 1 0 auto;
}

/*# sourceMappingURL=style.css.map */