* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  background: url(/Assets/Images/backgrounds/philospher.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  height: 100vh;
  overflow: hidden;
}


.container {
  display: flex;
  height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  gap: 1rem;
}

.sidebar {
  width: 30%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #555;
}

.header h1 {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.time {
  font-size: 0.8rem;
  text-align: right;
  line-height: 1.2;
}

.topics .topic-item {
  padding: 0.75rem 1rem;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 3px solid transparent;
}

.topics .topic-item:hover {
  background: rgba(60, 60, 60, 0.5);
  border-left: 3px solid #00ffff;
}

.topics .topic-item.active {
  background: rgba(0, 255, 255, 0.1);
  border-left: 3px solid #00ffff;
}

.topic-item .arrow {
  font-weight: bold;
}

.topic-item .title {
  flex: 1;
  font-size: 0.9rem;
}

.topic-item .date {
  font-size: 0.7rem;
  opacity: 0.7;
}

.content {
  width: 70%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid #333;
  overflow-y: auto;
  /* REMOVED: display: flex, align-items, justify-content */
}

.content p{
  color: #ffffff; /* neon green */
  font-family: "Courier New", Courier, monospace; /* terminal style */
  text-shadow: 0 0 5px #00ff00,
               0 0 10px #4dff4d,
               0 0 20px #6cff6c;
  background-color: #000; /* optional: black background */
  padding: 5px;
  border-radius: 4px;
}

.placeholder {
  text-align: center;
  padding: 2rem;
  /* Center vertically and horizontally */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.placeholder h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.placeholder p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.post-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.post-content.active {
  display: block;
}

.sticky-header {
  /* position: sticky; */
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  z-index: 10;
  backdrop-filter: blur(8px);
  border-radius: 6px 6px 0 0;
}

.post-title {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
  font-family: "JetBrains Mono", monospace;
}

.post-date {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.3rem;
  font-family: "JetBrains Mono", monospace;
}

.post-body {
  line-height: 1.6;
  font-size: 0.9rem;
}

.alert-box {
  background: #ff0000;
  color: #000;
  padding: 0.5rem;
  margin: 1rem 0;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
}

.org-chart {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 6px;
  border: 1px solid #555;
}

.org-chart h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.node {
  padding: 0.5rem;
  margin: 0.5rem 0;
  border: 1px solid #666;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* Back Button */
.back-button {
    position: absolute;
    transform: translate(-20px,5px);
}

.back-button a {
    background: transparent;
    border: none;
    color: antiquewhite;
    font-size: 22px;
    cursor: pointer;
}