/*
  ========================================
  BASE & GLOBAL STYLES
  ========================================
*/
* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-size: 18px;
  margin: 0 auto;
  text-align: center;
  color: #333F50;
}

a,
a:visited {
  color: #004494;
}

a:hover {
  color: #0056b3;
}

main {
  width: 80%;
  margin: 0 auto;
}

/* --- Company Goals Page--- */
.centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem; /* or whatever looks good */
}

/*
  ========================================
  HEADER & LOGO
  ========================================
*/
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e0e0e0;
}

@font-face {
  font-family: 'Museo Sans 700';
  src: url('/static/exljbris - MuseoSans-700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans 100';
  src: url('/static/exljbris - MuseoSans-100.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

.logo-area {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.logo-text {
  font-family: 'Museo Sans 700', sans-serif;
  font-size: 2.5rem;
  white-space: nowrap;
  color: #333F50
}

#typing-target {
  font-family: 'Museo Sans 100', sans-serif;
  font-size: 2.5rem;
  color: #333F50;
}

.typing-text::after {
  content: '_';
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Page Headers */
.page-header {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 28px;
  color: #333F50;
  font-weight: bold;
}

/*
  ========================================
  NAVIGATION
  ========================================
*/

nav {
  background-color:#eaeaea;
  text-align: right;
  padding-top: 2.4rem;
  padding-right: 2rem;
  padding-bottom: 0.2rem;
  min-height: 76px; /* Forces a minimum height regardless of content */
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: left;
}

.nav-menu li {
  margin-left: 3rem;
  position: relative; /* Enables dropdown positioning */
}

.nav-menu a {
  text-decoration: none;
  color: #333F50;
  font-weight: bold;
  padding: 1rem 0;
}

.nav-menu a:hover {
  color: #808891;
  text-decoration: none;
}

/* Dropdown submenu styles */
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  z-index: 1000;
  min-width: 100%;
  width: fit-content;
  white-space: nowrap;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: None;
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333F50;
  font-weight: normal;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
  color: #0056b3;
}

/*
  ========================================
  FORMS & INPUTS (Issue/Risk Page)
  ========================================
*/
.form-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-field label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 16px;
}

/* Base input and textarea styling */
.pick-panel-input,
.strain-textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.title-panel-input {
    width: 100%;
    padding: 8px 12px;  /* top/bottom 8px, left/right 12px */
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: border-color 0.2s, box-shadow 0.2s;
}



.pick-panel-input:focus,
.strain-textarea:focus {
    outline: none;
    border-color: #D9DEE6;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* ✅ Span Description field across all columns */
.form-description {
    grid-column: 1 / -1 !important; /* Make sure it spans full width */
    width: 100%;
}
/* Make textarea inside .form-description fill the entire grid area */
.form-description textarea,
.form-description .pick-panel-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* Optional: consistent height for large textareas */
.strain-textarea,
textarea.pick-panel-input {
    height: 200px;
    resize: vertical;
}

.standard-button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #333F50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  align-self: flex-start;
  text-decoration: none; /* prevent underline */
}

.standard-button:hover {
  background-color: #415A77;
}

.standard-button:visited,
.standard-button:active {
  color: white;
  background-color: #333F50;
}

/*
  ========================================
  LOADING OVERLAY
  ========================================
*/
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.phage-spinner img {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*
  ========================================
  RESPONSIVE ADJUSTMENTS
  ========================================
*/
@media (max-width: 992px) {
    .top-header {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-menu li {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    main {
        width: 95%;
    }

    .page-header {
        font-size: 24px;
    }

    /* Stack form grid to a single column */
    .form-grid-3col {
        grid-template-columns: 1fr;
    }
}

.login-container {
    margin-top: 6rem;
    text-align: center;
    min-height: 50vh; /* full viewport height */
}

.login-btn {
  display: inline-flex;
  align-items: center;
  background-color: #333F50;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-btn:hover,
.login-btn:focus,
.login-btn:active,
.login-btn:visited {
  background-color: #415A77;
  color: #fff; /* <-- THIS prevents it from turning blue */
  text-decoration: none;
}

/* === Issues Entry Page ===*/
/* === Table and Filter Styling === */

/* --- Filter Dropdowns --- */
.small-dropdown {
  min-width: 80px;
  padding: 4px 6px;
  font-size: 14px;
}

#category-filter,
#program-filter,
#issuesrisks-filter,
#status-filter,
#priority-filter,
#programimpact-filter {
  width: 120px;
}

thead select {
  width: 100%;
  max-width: 100%;
  padding: 2px;
  font-size: 12px;
  box-sizing: border-box;
}

th {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: bottom;
}



/* --- Table Layout --- */
#table-container table,
.white-box table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  word-wrap: break-word;
}

#table-container th,
#table-container td,
.white-box th,
.white-box td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
}

#table-container th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* --- Column-specific Styling --- */
#table-container .col-description {
  min-width: 440px;
  width: 440px;
}

#table-container .col-narrow {
  min-width: 100px;
  width: 100px;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* --- Link Styling in Table --- */
#table-container a {
  color: var(--theme-blue);
  text-decoration: underline;
  font-weight: 600;
  background-color: transparent;
  transition: color 0.2s ease-in-out;
}

#table-container a:hover {
  color: #1a3c4a;
}

/* --- Responsive White Box --- */
@media (max-width: 768px) {
  .white-box {
    padding: 20px;
    width: 95%;
  }
}

.sub-header {
  text-align: center;
  font-size: 18px;
  color: #333F50 ;
  font-weight: bold;
}

.directions-text {
  text-align: justify;
  font-size: 16px;
  line-height: 1.6;
  color: #333F50 ;
  margin-left: 260px;
}

.directions-text ul {
  list-style-type: disc;
  padding-left: 30px;
  margin: 5px 0;
}

.directions-text li {
  margin-bottom: 5px;
}

.pick-job-name-container {
  gap: 5px;
  margin-left: 365px;
}

.verso-contents-button {
  margin-left: 130px;
  padding: 8px 12px;
  background-color: #333F50 ;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}

.verso-contents-button:hover {
  background-color: #415A77;
}

/* === SAM ===*/
.pick-job-name-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  margin-left: 320px;
}

.pick-job-name-label {
  font-size: 1rem;
  margin-right: 0.6rem;
  color: #333F50;
  white-space: nowrap;
}

.pick-job-name-input {
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 220px;
}

.sam-contents-button {
  margin-left: 130px;
  padding: 8px 12px;
  background-color: #333F50 ;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}

.sam-contents-button:hover {
  background-color: #415A77;
}

.pick-panel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  margin-left: 220px;
}

.pick-panel-inner-container {
    display: flex;
    align-items: center;
    margin-left: 155px;
}

.pick-panel-label {
    font-size: 1rem;
    margin-right: 0.6rem;
    color: #333F50;
    white-space: nowrap;
}

.pick-panel-input {
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 192px;
  box-sizing: border-box;
  margin-bottom: 0px;
}

.or-text {
  text-align: center;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333F50 ;
  font-weight: bold;
}

.well-plate-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.well-plate {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 2px;
  max-width: 1150px;
  position: relative;
  margin-bottom: 20px;
}

.well {
  width: 100%;
  padding: 4px;
  text-align: center;
}

.well textarea {
  width: 100%;
  padding: 0px 4px;
  box-sizing: border-box;
  text-align: center;
  font-size: 11px;
  height: 35px;
  line-height: 35px;
  resize: none;
  overflow: hidden;
}

.row-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.column-label {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.clear-button {
  position: absolute;
  bottom: -35px;
  right: 0;
  padding: 8px 12px;
  background-color: #333F50 ;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}

.clear-button:hover {
  background-color: #415A77;
}

.submit-button-container {
    display: flex;
    justify-content: center;
}

.submit-button {
  padding: 12px 24px;
  background-color: #333F50 ;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 1px;
}

.submit-button:hover {
  background-color: #415A77;
}

.output-container {
  position: absolute;
  top: 200px;
  right: 70px;
  padding: 15px;
  background-color: #f4f4f4;
  border-radius: 8px;
  color: #333F50 ;
  font-size: 14px;
  text-align: left;
  width: 350px;
  height: 600px;
  display: none;
  overflow: hidden;
}

.output-container pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-y: auto;
  max-height: 100%;
  margin: 0;
}

.main-content {
  transition: transform 0.3s ease;
}

.main-content.shift-left {
  transform: translateX(-140px);
}

#confirmBreakYes {
  margin-bottom: 20px;
}

.panel-inventory-button {
    margin-top: 10px;
    margin-left: 220px;
    padding: 8px 12px;
    background-color: #333F50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    z-index: 1;
}

.panel-inventory-button:hover {
  background-color: #415A77;
}

/* cocktail calculator styles */
.cocktail-main {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 30px;
  padding: 0 40px;
  box-sizing: border-box;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.strain-column, .param-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.strain-textarea {
  height: 500px;
  resize: vertical;
  overflow-y: auto;
  padding: 10px;
  font-family: monospace;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 8px;
}

.pick-panel-label {
  font-size: 1rem;
  margin-right: 0.6rem;
  color: #333F50;
}

.param-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.param-input {
  width: 100px;
  height: 2rem;
  padding: 4px 8px;
  font-size: 1rem;
}

.small-button {
  font-size: 0.95rem;
  padding: 6px 14px;
  height: auto;
  line-height: 1.3;
}

.panel-select {
  font-size: 16px;
  color: #333F50;
}

.section-header {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.25rem;
}

.strain-column,
.param-column {
  flex: 1;
}

.panels-dropdown {
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0px;
}

.strain-box-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.strain-input-container, .panel-history-container {
  flex: 1;
}

.panel-history-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-height: 200px;
  padding: 0.5rem;
  background: #f9f9f9;
  font-size: 0.85rem;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.strain-textarea {
  width: 100%;
  height: 400px;
  resize: vertical;
  overflow-y: auto;
  padding: 10px;
  font-family: monospace;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 8px;
}

.date-range-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.date-range-group input[type="date"] {
  font-size: 14px;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 150px;
  box-sizing: border-box;
}

.date-hint {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  margin-left: 0.25rem;
}

.param-row input[type="checkbox"] {
  transform: scale(1.2); /* optional: makes checkbox slightly easier to click */
  margin-top: 1px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 14px;
  color: #333F50;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.full-width-input {
  width:81%;
  font-size: 0.85rem; /* slightly smaller than base */
}

.download-results-button {
  margin-top: 0px;
  padding: 10px 20px;
  background-color: #333F50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 24px;
  align-self: flex-start;
  text-decoration: none;
  display: inline-block;
}

.download-results-button:hover {
  background-color: #415A77;
  color: white;
  text-decoration: none;
}

.rarefaction-image {
  flex: 2;
  min-width: 350px;
  text-align: center;
}

.cocktail-stats-table {
  flex : 1;
  min-width: 250px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.5;
  color: #333;
  align-self: flex-start;
  margin-top: 4rem;
}

/* --- Titer Range Slider Styles --- */
.titer-range {
  width: 70%;
  position: relative;
  height: 80px;
  margin-top: 0.5rem;
  margin-left: 1rem;
}

.slider-track,
.slider-range {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  border-radius: 5px;
}

.slider-track {
  background-color: #ddd;
  z-index: 1;
}

.slider-range {
  background-color: #3498db;
  z-index: 2;
}

.range-input {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40px;
  width: 100%;
  z-index: 3;
}

.range-input input {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 100%;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
}
input[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #3498db;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
  appearance: none;
  border: none;
}

.min-range::-webkit-slider-thumb {
  margin-top: 10px;
  transform: translateX(-20%);
}
.min-range::-moz-range-thumb {
  transform: translateX(-20%);
}
.max-range::-webkit-slider-thumb { margin-top: 10px; }

.notches {
  position: absolute;
  top: 40px;
  left: 1%; 
  right: 1%;
  width: 98%; 
  height: 30px;
}
.notch {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}
.notch-line {
  width: 2px;
  height: 10px;
  background-color: #888;
}
.notch-label {
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.titer-range-display {
  margin-top: 2px;
  font-size: 0.95rem;
  color: #444;
  text-align: center;
  user-select: none;
  letter-spacing: 0.01em;
}

/* --- AUC ratio minimization algorithm --- */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* loading spinner */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* === Spinners === */
.phage-spinner {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phage-spinner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 2s linear infinite;
}

.spinner {
    visibility: hidden;
    width: 25px;
    height: 25px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    top: 5px;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === Porgram Dashboards ===*/
.reportContainer {
  height: 53rem;
  width: 100%;
  margin-top: 2rem;
}

.site-footer {
  text-align: left;
}

.page-container {
  margin-top: 2rem;
  text-align: left;
}

/* === Goals Page === */

table.goals-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table.goals-table th,
table.goals-table td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
  text-align: left;
}

table.goals-table th {
  background-color: #f2f2f2;
}

table.goals-table tfoot td {
  font-weight: bold;
  background-color: #f9f9f9;
}

.disclaimer {
  font-size: 0.9em;
  font-style: italic;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

table.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  text-align: center;
  font-weight: normal;
}

table.timeline-table th,
table.timeline-table td {
  border: 1px dashed #aaa;
  padding: 10px;
}

table.timeline-table th {
  font-weight: bold;
  background-color: #f9f9f9;
}

input, select, textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;; /* or specify a font-family like 'Arial, sans-serif' */
    font-size: 14px; /* optional: to ensure consistent size too */
}

/*
  ========================================
  UPDATES AND FEEDBACK PAGE
  ========================================
*/

/* Base typography for inputs */
input,
select,
textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

/* Body styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Centering wrapper */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

/* Section headers */
h1 {
    text-align: center;
    margin-bottom: 40px;
}
h2 {
    margin-top: 40px;
}

/* List styling */
ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.2em;
}
ul li {
    margin: 0.3em 0;
}

/* Feedback form styling */
.feedback-form {
    margin-top: 20px;
}

.feedback-form label {
    display: block;
    margin-top: 10px;
}

.feedback-form textarea {
    width: 100%;
    height: 100px;
    resize: vertical;
}

.feedback-form input[type="submit"] {
    margin-top: 10px;
    padding: 6px 12px;
    cursor: pointer;
}
