/* Import custom font */
@font-face {
  font-family: 'DTM Mono';
  src: url('fonts/DTM-Mono.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Global body styles */
body {
  background-image: url(forest.png);
  background-attachment: fixed;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  background-position: center;
  background-color: black;
  color: #ebdcb2;
  font-size: 17px;
  font-family: 'DTM Mono', monospace;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Link styles */
a:link,
a:visited {
  color: #ed1818;
  text-decoration: none;
}

a:hover {
  color: #ed1818;
}

/* Layout helpers */
.comp {
  position: fixed;
  bottom: 0;
}

.back {
  position: fixed;
  top: 40px;
  left: 40px;
}

.stuff {
  position: relative; 
  right: 250px;
}

.box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.column1 {
  margin-right: 100px;
}

.column2 {
  margin-left: 100px;
}

.table1 {
  padding: 0.1em 1em;
  background-color: black; 
}

.weird {
  font-size: 13px;
}

/* Diary text style with custom font */
.diary-text {
  font-family: 'DTM Mono', monospace;
  font-size: 20px;
  color: #e8dbda;
}

/* Small icon for inline use */
.tiny-icon {
  height: 1em;
  width: auto;
  vertical-align: text-bottom;
}

/* Soul icon that appears on hover */
#soul-icon {
  position: absolute;
  height: 1em; /* Smaller size */
  width: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Hoverable option text */
.option {
  cursor: pointer;
  color: #ebdcb2;
  position: relative;
}

.option:hover {
  color: #f5d17f;
  text-decoration: none;
}

.option-box {
  display: inline-block;
  background-color: black;
  border: 4px solid white;
  padding: 20px 80px;       /* Increased from 60px to 80px */
  border-radius: 4px;
  margin-top: 10px;
  min-width: 450px;         /* Wider minimum width */
}
