.enolTitle {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  padding-top: 2%;
  padding-bottom: 2%;
  font-family: fantasy;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.autorotate {
  display: block;
  padding: 5px;
  background-color: #86c840;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.demo {
  font-size: 11px;
  margin: 20px;
}

/* Zoom controls */
.zoomDiv {
  position: absolute;
  left: 2%;
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.box {
  display: inline-block;
  background: linear-gradient(25deg, #f13f79, #ffc778);
  color: white;
  font-size: 25px;
  padding: 40px;
  width: 300px;
  height: 300px;
}

.btn {
  width: 35px;
  height: 35px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  padding: 19px 15px 5px;
  text-align: center;
  user-select: none;
  transition: all 0.3s ease;
  z-index: 1;
  margin: 15px;
}
.btn:hover {
  background: #eef;
}

/* Updated zoom button positioning */
.zoom {
  bottom: 190px;
}

.zoom-out {
  bottom: 120px;
}

.zoom-init {
  bottom: 50px;
}

/* Layout: instructions left, image right */
.viewer-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 20px;
}

.instructions-container {
  flex: 1;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
}

.instructions-container h3 {
  margin-top: 0;
  font-size: 16px;
  color: #333;
}

.instructions-container ul {
  /* padding-left: 20px; */
}

.instructions-container li {
  margin-bottom: 8px;
}

.viewer-container {
  flex: 2;
  display: flex;
  justify-content: flex-start; /* change to flex-start for left alignment */
  align-items: flex-start;
}

.InnerContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#view360 {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #f5f5f5;
  min-height: 400px;
}

/* Zoom buttons in top-right of image */
.zoomDiv {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
}

.zoomDiv .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.zoomDiv .btn:hover {
  background: #f0f0f0;
}

/* Damage report content font styling */
#damageReportContent {
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

#damageReportContent table {
  font-family: Arial, sans-serif;
  font-size: 16px;
  border-collapse: collapse;
  width: 100%;
}

#damageReportContent table, 
#damageReportContent th, 
#damageReportContent td {
  border: 1px solid #ccc;
  padding: 6px;
}

/* Reset & base font */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* Sticky header */
.main-header {
  display: flex;
  align-items: center;
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo {
  height: 40px;
  margin-right: 15px;
}

.header-title {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Main container */
.container {
  max-width: 1500px;
  margin: 10px auto;
  padding: 0 20px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

