.page-wrap {
  width: 100%;
  max-width: 720px;
  padding: 24px 16px 60px;
}
.page-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  color: #3b82f6;
  margin-bottom: 6px;
}
.page-title {
  font-size: 22px;
  color: #f1f5f9;
  margin-bottom: 24px;
}
.compose-box {
  background: #131f35;
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compose-box input, .compose-box textarea {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #e5e7eb;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding: 10px 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}
.compose-box input:focus, .compose-box textarea:focus { border-color: rgba(59,130,246,0.4); }
.compose-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.compose-row button {
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 8px;
  color: #93c5fd;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.15s;
}
.compose-row button:hover { background: rgba(59,130,246,0.25); }

.ann-card {
  background: #131f35;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  position: relative;
}
.ann-card.unread { border-color: rgba(59,130,246,0.3); }
.ann-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}
.ann-title-text {
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  flex: 1;
}
.ann-unread-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  margin-top: 6px;
}
.ann-content { font-size: 13px; color: #94a3b8; line-height: 1.6; white-space: pre-wrap; }
.ann-meta {
  margin-top: 10px;
  font-size: 11px;
  color: #334155;
  display: flex;
  gap: 12px;
}
.ann-del {
  position: absolute;
  top: 12px; right: 12px;
  background: transparent;
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 6px;
  color: #ef4444;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 2px 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
}
.ann-card:hover .ann-del { opacity: 0.6; }
.ann-del:hover { opacity: 1 !important; background: rgba(239,68,68,0.1); }
