:root {
  --primary: #6366f1;
  --secondary: #a855f7;
  --bg: #0f172a;
  --fg: #f8fafc;
  --accent: #38bdf8;
  --glass: rgba(30, 41, 59, 0.7);
  --border: rgba(148, 163, 184, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

header {
  margin-bottom: 4rem;
  animation: fadeIn 1s ease-out;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--fg) 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
}

.card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  animation: slideUp 0.8s ease-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(99, 102, 241, 0.3);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}

.btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.profile-section {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.avatar {
  width: 180px;
  height: 240px;
  border-radius: 32px;
  object-fit: cover;
  border: 4px solid var(--border);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.profile-info {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.profile-info h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.profile-info .links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.profile-info a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.profile-info a:hover {
  color: var(--fg);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
}

.content-list {
  list-style: none;
}

.content-list li {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.content-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.item-title {
  font-weight: 600;
  color: var(--fg);
  display: block;
}

.item-meta {
  font-size: 0.9rem;
  color: #94a3b8;
  display: block;
}

.pub-item {
  margin-bottom: 2rem;
}

.pub-authors {
  display: block;
  font-size: 0.95rem;
  color: #94a3b8;
}

.pub-venue {
  display: block;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--accent);
}

.pub-type-header {
  font-size: 0.85rem;
  color: #64748b;
  margin: 2.5rem 0 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pub-type-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.pub-highlight {
  color: var(--fg);
  font-weight: 600;
}

/* Tabs */
.main-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.nav-link {
  text-decoration: none;
  color: #64748b;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

/* Sorting Controls and Dynamic Content */
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.filter-chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--fg);
}

.filter-chip.active {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

/* Domain specific active state */
.filter-chip.domain-active {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #10b981;
  font-weight: 600;
}

.collapsible-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
  margin-bottom: 0;
}

.collapsible-wrapper.expanded {
  max-height: 1000px;
  /* Large enough to fit content */
  opacity: 1;
  margin-bottom: 2rem;
}

#filter-toggle {
  transition: all 0.2s ease;
}

#filter-toggle:hover {
  background: rgba(59, 130, 246, 0.2) !important;
  transform: translateY(-1px);
}

#filter-toggle:active {
  transform: translateY(0);
}

.filter-chip input {
  display: none;
}

.filter-group {
  display: flex;
  gap: 0.75rem;
}

.sort-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fg);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  height: 2.1rem;
  line-height: 1.2;
  vertical-align: middle;
}

select.sort-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(148, 163, 184, 0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1rem;
  padding-right: 2rem;
}

button.sort-select {
  background-image: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.sort-select:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

.sort-select:focus {
  border-color: var(--accent);
  background-color: rgba(59, 130, 246, 0.05);
}

.sort-select option {
  background: #0f172a;
  color: var(--fg);
}



#profile-content {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

.tab-content.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  cursor: pointer;
  user-select: none;
}

/* Gantt Calendar Timeline Layout */
/* Gantt Calendar Split Timeline Layout */
.gantt-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 0.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Left Column Labels (Static) */
.gantt-labels-column {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.35);
  /* Transparent glass integration */
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 15;
}

.gantt-corner-label {
  height: 68px;
  /* 36px year + 30px month + 2px border */
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.65);
  box-sizing: border-box;
  overflow: hidden;
}

.gantt-corner-name {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 1rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gantt-corner-sub {
  width: 40px;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
  color: #64748b;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 4px;
}

.gantt-row-label-cell {
  min-height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: transparent;
  transition: background-color 0.2s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.gantt-label-name-cell {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 0.5rem 0 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gantt-label-sub-cell {
  width: 40px;
  flex-shrink: 0;
  text-align: center;
  font-size: 0.7rem;
  color: #94a3b8;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gantt-label-bk {
  color: #a78bfa;
}

.gantt-label-kiise {
  color: #fbbf24;
}

/* BK/KIISE toggle: hidden state */
.gantt-labels-column {
  transition: width 0.3s ease;
}

.gantt-corner-sub,
.gantt-label-sub-cell {
  transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.gantt-labels-column.ranks-hidden {
  width: 150px;
}

.gantt-labels-column.ranks-hidden .gantt-corner-sub,
.gantt-labels-column.ranks-hidden .gantt-label-sub-cell {
  width: 0;
  padding: 0;
  opacity: 0;
  border: none;
}

/* Right Column Timeline (Scrollable) */
.gantt-timeline-scroll {
  flex-grow: 1;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Custom scrollbars for the scrollable timeline div */
.gantt-timeline-scroll::-webkit-scrollbar {
  height: 8px;
}

.gantt-timeline-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.gantt-timeline-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.gantt-timeline-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gantt-timeline-header {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.65);
  /* Unified darker header background */
  z-index: 12;
  flex-shrink: 0;
}

.gantt-year-row,
.gantt-month-row {
  display: flex;
  flex-direction: row;
}

.gantt-year-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gantt-year-block {
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--fg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gantt-month-block {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  flex-shrink: 0;
}

.gantt-timeline-body {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
}

.gantt-row-timeline {
  min-height: 30px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background-image: repeating-linear-gradient(to right, transparent, transparent 79px, rgba(255, 255, 255, 0.03) 79px, rgba(255, 255, 255, 0.03) 80px);
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Hover syncing active state */
.gantt-row-hover {
  background-color: #1e293b !important;
}

.gantt-review-bar:hover,
.gantt-deadline-bar:hover,
.gantt-notification-bar:hover,
.gantt-event-bar:hover,
.gantt-abstract-bar:hover {
  z-index: 75; /* Stack the active bar & tooltip above the today line (z-index: 60) */
}

.gantt-venue-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.gantt-venue-name:hover {
  text-decoration: underline;
}

.gantt-venue-meta {
  font-size: 0.65rem;
  color: #64748b;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Gantt Elements */
.gantt-review-bar {
  position: absolute;
  top: 17px;
  height: 16px;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.4), rgba(239, 68, 68, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 4px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gantt-review-bar:hover {
  background: linear-gradient(to right, rgba(239, 68, 68, 0.6), rgba(239, 68, 68, 0.3));
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.gantt-deadline-bar {
  position: absolute;
  top: 10px;
  width: 6px;
  height: 30px;
  background: #3b82f6;
  border-radius: 3px;
  z-index: 4;
  cursor: pointer;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.5);
  transition: transform 0.2s ease;
}

.gantt-deadline-bar:hover {
  transform: translateX(-50%) scaleY(1.1);
  background: #60a5fa;
}

.gantt-notification-bar {
  position: absolute;
  top: 10px;
  width: 5px;
  height: 18px;
  background: #eab308;
  border-radius: 3px;
  z-index: 5;
  cursor: pointer;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(234, 179, 8, 0.5);
  transition: transform 0.2s ease;
}

.gantt-notification-bar:hover {
  transform: translateX(-50%) scaleY(1.1);
  background: #fde047;
}

.gantt-event-bar {
  position: absolute;
  top: 20px;
  height: 10px;
  background: #10b981;
  border-radius: 5px;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

.gantt-event-bar:hover {
  height: 12px;
  top: 19px;
  background: #34d399;
}

/* Today vertical line */
.gantt-today-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ec4899;
  box-shadow: 0 0 10px #ec4899;
  z-index: 60;
  pointer-events: none;
}

.gantt-today-label {
  position: absolute;
  top: -22px;
  transform: translateX(-50%);
  background: #ec4899;
  color: white;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* Tooltip container */
.gantt-tooltip {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background: #1e293b;
  color: #f8fafc;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 100;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', -apple-system, sans-serif;
}

.gantt-review-bar:hover .gantt-tooltip,
.gantt-deadline-bar:hover .gantt-tooltip,
.gantt-notification-bar:hover .gantt-tooltip,
.gantt-event-bar:hover .gantt-tooltip,
.gantt-abstract-bar:hover .gantt-tooltip {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .gantt-labels-column {
    width: 200px;
  }

  .gantt-corner-label {
    font-size: 0.8rem;
    padding-left: 0.5rem;
  }

  .gantt-row-label-cell {
    padding: 0 0.5rem;
  }
}

/* Verified checkmark badge */
.gantt-badge-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #0f172a;
  border-radius: 50%;
  font-size: 0.65rem;
  width: 14px;
  height: 14px;
  font-weight: bold;
  margin-left: 0.25rem;
  vertical-align: middle;
  line-height: 1;
}

/* Abstract to Submission Phase Bar */
.gantt-abstract-bar {
  position: absolute;
  top: 17px;
  height: 16px;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 4px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gantt-abstract-bar:hover {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.6), rgba(59, 130, 246, 0.3));
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

/* --- Premium Glassmorphic Table Styles --- */
.journal-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.journal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: 'Inter', -apple-system, sans-serif;
  color: #cbd5e1;
}

.journal-table th {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.5);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}

.journal-table th:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: #f8fafc;
}

.journal-table th.sorted-asc::after {
  content: ' ▲';
  color: var(--accent);
  font-size: 0.65rem;
}

.journal-table th.sorted-desc::after {
  content: ' ▼';
  color: var(--accent);
  font-size: 0.65rem;
}

.journal-table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  vertical-align: middle;
  transition: background-color 0.15s ease;
}

.journal-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.015);
}

.journal-table tr.deadline-passed-row {
  opacity: 0.45;
}

.journal-table tr.deadline-passed-row td {
  text-decoration: none;
}

.venue-link-cell {
  font-weight: 600;
  white-space: nowrap;
}

.venue-link-cell a {
  color: #f8fafc;
  text-decoration: none;
  transition: color 0.15s ease;
}

.venue-link-cell a:hover {
  color: var(--accent);
}

/* JCR quartiles */
.quartile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  line-height: 1;
}

.q-q1 {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.q-q2 {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.q-q3 {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.q-q4 {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* CFP Title styling */
.cfp-title-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.cfp-title-link:hover {
  color: var(--accent);
}

.cfp-title-text {
  color: #cbd5e1;
  font-weight: 500;
}

/* Table keyword/domain tags */
.table-tag {
  display: inline-block;
  font-size: 0.65rem;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.02);
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.table-tag:last-child {
  margin-right: 0;
}

/* Show/hide JCR metric columns based on parent state */
.journal-table-wrapper.ranks-hidden .col-if,
.journal-table-wrapper.ranks-hidden .col-q {
  display: none;
}

/* Date cell styling */
.date-cell {
  font-family: monospace;
  font-size: 0.75rem;
  white-space: nowrap;
}

.date-cell.passed {
  text-decoration: line-through;
  opacity: 0.55;
}

.date-cell.soon {
  color: #f43f5e;
  font-weight: 600;
}