.log-content-sidebar {
    overflow-x: auto;
    white-space: nowrap;
    max-height: 595px;
}
.log-content {
  overflow-y: auto; 
  overflow-x: hidden;
  white-space: unset;
  text-wrap: wrap;
  overflow-wrap: break-word;
  height: calc(100vh - 180px);
  max-width: 100%;
  font-size: 14px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.no-selection {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  height: 595px;           /* match sidebar height */
  text-align: center;
}

.arrow-icon {
  font-size: 2rem;
  margin-right: 0.5rem;    /* spacing between icon and text */
  vertical-align: middle;  /* ensures baseline alignment */
}


/* Overlay covers full viewport */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi‑transparent */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.hidden {
  display: none;
}

/* Simple rotating spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Keyframe for rotation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

