@charset "UTF-8";

/* Twemoji Country Flags Font (self-hosted; see preload in HtmlTemplate::generateHead) */
@font-face {
  font-family: 'Twemoji Country Flags';
  src: url('/fonts/TwemojiCountryFlags.woff2') format('woff2');
  font-display: swap;
}

/* Theme Variables */
:root {
  --background-color: #b2dcf9;
  --content-background-color: #e3e3e324;
  --section-background-color: #bce0e9;
  --section-background-hover: #cdf1f0;
  --text-color: #000;
  --link-color: #5485e2;
  --input-background-color: white;
}

/* Dark Theme */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #180b0b;
    --content-background-color: #393838db;
    --section-background-color: #171717;
    --section-background-hover: #202020;
    --text-color: #fff;
    /* ~4.5:1+ on content background (#343232 area) for WCAG AA */
    --link-color: #e89595;
    --input-background-color: #292929;
  }
}

/* Base Layout */
body {
  display: block;
  min-width: 376px;
  max-width: 800px;
  margin: auto;
  padding-bottom: 10px;
  background: var(--background-color);
  color: var(--text-color);
  font-family: 'Roboto', 'Twemoji Country Flags', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'EmojiOne Color', sans-serif;
  font-size: 15px;
  line-height: 1.3;
  text-align: justify;
}
/* Content Warning Components */
#blur-overlay {
  position: relative;
  z-index: 1000;
}

.blur {
  pointer-events: none;
  user-select: none;
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.unblur {
  pointer-events: auto;
  filter: none !important;
}

#content-warning {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 1em auto;
  padding: 1em;
  background: rgb(255 79 79 / 95%);
  border-radius: 1.2em;
  box-shadow: 0 4px 16px rgb(73 73 75 / 72%);
  color: #251313;
  font-family: 'Segoe UI', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 1em;
  cursor: pointer;
  transition: box-shadow 0.5s;
}
#content-warning:focus {
  box-shadow: 0 6px 32px #d85555;
}

#content-warning:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
}

.warning-icon {
  margin-right: 1em;
  font-size: 1em;
}

.warning-action {
  display: block;
  margin-top: 0.6em;
  color: #555;
  font-size: 0.95em;
  opacity: 0.8;
}
/* Typography & Links */
h1 a {
  color: var(--text-color);
}

a {
  color: var(--link-color);
}

a:hover {
  color: var(--text-color);
}

h1,
p.search {
  max-height: 200px;
  margin: auto;
  margin-bottom: 20px;
  color: var(--text-color);
  text-align: center;
}
/* Forms & Inputs */
#form {
  display: none;
  width: 400px;
  margin: auto;
}

label > span,
#form > span {
  color: #ffa900;
}

textarea,
select,
input {
  color: var(--text-color);
  background-color: var(--input-background-color);
  border: 1px solid var(--text-color);
  border-radius: 3px;
}

textarea,
td > input,
td > select {
  width: 100%;
}
/*#form>input[type="submit"]{float:right;}*/
/* Details & Summary */
details {
  margin: 1em 0;
  border: 3px solid var(--link-color);
  border-radius: 7px;
}

summary {
  padding: 1px 5px;
  background-color: var(--link-color);
  border-radius: 1px;
  cursor: pointer;
}

summary:hover {
  background-color: #991e1e;
}

input:focus, 
select:focus, 
textarea:focus {
  outline: 2px solid var(--link-color);
  outline-offset: 1px;
}

/* Center the content inside the details form */
details > div {
  display: flex;
  flex-direction: column; /* stack instead of side-by-side */
  align-items: center;
  margin-top: 10px;
}

/* Optional: ensure the table doesn’t stretch weirdly */
/* Ensure table stays centered */
details table.index {
  margin: 0 auto;
  border-collapse: collapse;
}

/* Tables */
table.index {
  width: 100%;
  table-layout: auto;
}

table.index td:first-child {
  width: 1%;
  white-space: nowrap;
}

table.index td:last-child {
  width: 99%;
}

table.index td:last-child input,
table.index td:last-child textarea {
  width: 100%;
  box-sizing: border-box;
}

table.index textarea {
  width: 100%;           /* take full width of the right column */
  box-sizing: border-box;/* keep proper padding */
  resize: vertical;      /* allow only vertical resize */
}

table.index,
table.index td,
table.index th {
  border: none !important;
  padding-left: 10px; /* keep horizontal padding for spacing */
  padding-right: 10px; /* add right padding for inputs */
}

table.index td:first-child label {
  display: block;         /* ensure label takes full cell width */
  text-align: right;      /* right-align text */
  padding-right: 10px;    /* add some space between label and input */
  white-space: nowrap;    /* prevent wrapping */
}

/* Submit panel summary: readable on link-color bar in light and dark */
.entry-submit-summary {
  font-size: 14px;
  cursor: pointer;
  color: #f5f5f5;
}

@media (prefers-color-scheme: dark) {
  #entry-submit-details summary.entry-submit-summary {
    background-color: #7a1a1a;
    color: #ffffff;
  }
}

@media (prefers-color-scheme: light) {
  .entry-submit-summary {
    color: #1a1a1a;
  }
}

/* Cloudflare Turnstile — inside #entry-submit-details, beside Submit (see .form-footer--with-turnstile) */
.turnstile-inline-host {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 65px;
}

.turnstile-inline-host .turnstile-unavailable {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: #e8b4b4;
  text-align: left;
  border: 1px solid rgba(216, 85, 85, 0.45);
  border-radius: 6px;
  background: rgba(216, 85, 85, 0.12);
}

.turnstile-inline-host .turnstile-unavailable code {
  font-size: 0.85em;
}

/* Make the footer appear below the table, centered */
.form-footer {
  display: flex;
  flex-direction: column;    /* stack text + button vertically */
  align-items: center;       /* center horizontally */
  margin-top: 10px;
}

.form-footer.form-footer--with-turnstile {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.form-footer p {
  margin-bottom: 8px;
  text-align: center;
}

/* Fancy submit button */
.form-footer input[type="submit"] {
  background: linear-gradient(135deg, var(--link-color), #67092a);
  color: white;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease-in-out;
  margin-bottom: 10px;
}

/* Hover animation */
.form-footer input[type="submit"]:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #67092a, var(--link-color));
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Content Sections (id on <main> in HtmlTemplate::generateHeader) */
main#content {
  overflow: hidden;
  padding-bottom: 3px;
  background-color: var(--content-background-color);
  border-radius: 5px;
}

.section {
  height: auto;
  min-height: 256px;
  margin: 0 5px 6px 5px;
  padding: 10px 5px;
  background-color: var(--section-background-color);
  border-left-style: solid;
  border-width: 1px;
  border-color: var(--link-color);
  border-radius: 8px;
  box-shadow: 2px 2px rgb(13 13 13 / 22%);
  overflow: hidden; /* Changed from visible to hidden */
}

/* Clear floats after section */
.section::after {
  content: "";
  display: block;
  clear: both;
}

.section:hover{background-color:var(--section-background-hover);}
#section.last_stat{min-height:170px;}
#none{font-weight: bold; font-size: large; margin-bottom: -21px; position: absolute; z-index: 9000; max-width: 800px; text-align: center; background: #aa1111; padding: 5px;}
p{margin:0px;}
div#image{float:right;}
/* Media */
img {
  border: 1px solid ghostwhite;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

img:hover {
  border-color: var(--link-color);
}

img.poster {
  float: right;
  margin-left: 15px;
  height: 256px;
  width: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

img.album {
  float: left;
  margin-right: 15px;
  height: 256px;
  width: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

#footer{position:relative;
bottom:5px;}
span.footer {
  text-transform: none;
  margin-left: 15px;
}
/*div#section.about{}*/
div#section.last {padding-top: 10px;}
p.about{margin-left:2px;}
p.stats{padding-bottom: 5px; padding-top: 5px;}
table, td, th {border: 1px solid #5e3737; padding-left: 10px;}
table.bl, td.bl, th.bl {border: 0px}
table {width: 400px;
border-collapse: collapse;}
td {padding-left: 10px; padding-right: 10px;}
table.index input,
table.index textarea {
  margin-top: 2px;
  margin-bottom: 2px;
}
table.index, td.index, th.index {border: 0px; padding-left: 10px; padding-right: 0px;}
.tg-wrap {width: auto;}
.g-recaptcha{width: fit-content;
margin: auto;}

/* test table div */
/* Parent container */
.result {
    overflow: hidden;
}

/* Table container */
.col:hover {
    background-color: var(--section-background-hover);
}
.tg-wrap {
    overflow: auto;
    width: 100%;
    background-color: var(--section-background-color);
}

/* Table */
.tg {
    border-collapse: collapse;
    width: 100%;
}

/* Table row */
.row {
    display: flex;
    flex-wrap: nowrap;
}

/* Table cell */
.col {
    flex: 0.4;
    border: 1px solid var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left:7px;
    padding-right:2px;
    padding-top:1px;
    padding-bottom:1px;
}

/* Count column */
.count {
    /*width: ; /* Adjust width as needed */
    text-align: center;
    padding:unset;
}

/* Specific column classes */
.col_artist,
.col_directors,
.col_movie {
    flex: 2; /* Adjust width as needed */
}

/* Header alignment */
.tg-baqh,
.tg-0lax {
    text-align: center;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted var(--link-color);
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 1px 3px;
  font-size: 13px;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 15%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/*Hide Tooltip on phones*/
/* Hide tooltip on mobile devices */

/* Responsive Styles */
@media (min-width: 1024px) {
  body {
    max-width: 1000px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 11px;
    line-height: 1.1;
  }
  .random_new {
    display: none;
    visibility: hidden;
  }
  .tooltiptext {
    display: none;
  }
  img.poster,
  img.album {
    max-height: 128px;
  }
  .section {
    min-height: 128px;
  }
}

/* Utilities */
span.material-symbols-outlined {
  position: relative;
  bottom: -5px;
}

span.vote {
  position: relative;
  top: 3px;
}

svg:hover {
  transform: scale(1.2);
  transition: transform 0.2s;
}

/* Animations */
.pulse-highlight {
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { 
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); 
  }
  50% { 
    box-shadow: 0 0 15px rgba(255, 215, 0, 1); 
  }
  100% { 
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); 
  }
}

.vote-button {
  background: none;
  border: none;
  color: gray;
  cursor: pointer;
}

.vote-toast {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 99999; /* keep high */
}
.vote-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


#suggestionsContainer {
    position: relative;
    top: 0%;
    left: 0;
    width: 100%;
    background-color: var(--input-background-color);
    border: 1px solid var(--link-color);
    border-radius:4px;
    border-top: none;
    z-index: 1000;
    margin-bottom: 5px;
    font-size: 1em;
    display: none; /* Initially hidden */
}

#suggestionsContainer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#suggestionsContainer li {
    padding: 4px 12px;
    cursor: pointer;
}

#suggestionsContainer li:hover,
#suggestionsContainer li.autocomplete-active {
    background-color: #3c3c3c;
}

span.suggestion-type {
    font-size: 0.8em;
    color: var(--link-color);
    margin-left: 5px;
}

#hover-sidebar {
  position: absolute;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;

  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 15px;

  border-radius: 10px 0 0 10px;
  box-shadow: 4px 0 15px rgba(0,0,0,0.3);

  /* Hidden initially, slide from content edge */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}

#hover-sidebar.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}


/* Optional scroll styling */
#hover-sidebar::-webkit-scrollbar {
  width: 6px;
}
#hover-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}
#hover-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.4);
}

/* Typography */
#hover-sidebar h4 {
  margin-top: 10px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
}
#hover-sidebar p,
#hover-sidebar li {
  font-size: 14px;
  line-height: 1.4em;
}
#hover-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 5px 0 10px 0;
}
#hover-sidebar li a {
  /*color: #8fd3ff;*/
  text-decoration: none;
  transition: color 0.2s;
}
#hover-sidebar li a:hover {
  color: #fff;
}

.submission-loading-overlay {
  position: fixed; top: 0; left:0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 10001;
}
.submission-loading-content {
  display: flex; flex-direction: column; align-items: center;
}
.spinner {
  border: 6px solid #eee;
  border-top: 6px solid #222;
  border-radius: 50%;
  width: 48px; height: 48px;
  animation: spin 1s linear infinite;
  margin-bottom: 1em;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.loading-text {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: 0 1px 4px #000;
}

.submission-splash-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.submission-splash-card {
  background: var(--section-background-color);
  color: inherit;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.submission-splash-message {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
.submission-splash-actions {
  text-align: center;
  margin-top: 2em;
}
.submission-splash-close {
  padding: 0.5em 1em;
  border-radius: 0.5em;
  border: none;
  background: var(--link-color);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.submission-splash-message[style*="#D85555"] {
  border-bottom: 2px solid #D85555;
  padding-bottom: 1em;
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.25em;
}

.youtube-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio = 9/16 = 0.5625 */
  height: 0;
  margin: 50px auto 0px auto;
}

.youtube-embed {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* IMDb Autocomplete Styles */
/* Ensure autocomplete stays within form bounds */
#entry-form {
  position: relative;
  overflow: visible; /* Allow dropdown to show */
}

#imdb-autocomplete {
  position: absolute;
  background: var(--input-background-color);
  border: 2px solid #f5c518; /* IMDb yellow border */
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(245, 197, 24, 0.3);
  margin-top: 2px;
  
  /* Constrain width to parent */
  left: 0;
  right: 0;
  max-width: 100%;
  min-width: 280px;
}


/* IMDb Autocomplete scrollbar for results */
.imdb-results-wrapper::-webkit-scrollbar {
  width: 6px;
}

.imdb-results-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.imdb-results-wrapper::-webkit-scrollbar-thumb {
  background: #f5c518;
  border-radius: 3px;
}

.imdb-results-wrapper::-webkit-scrollbar-thumb:hover {
  background: #f5c518;
  opacity: 0.8;
}

.imdb-results-header {
  padding: 6px 10px;
  background: #1a1a1a;
  color: #f5c518;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #f5c518;
}

.imdb-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.imdb-result-item {
  padding: 8px 10px;
  cursor: pointer;
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-width: 0; /* Important for flex truncation */
}

.imdb-result-item:hover {
  background: rgba(245, 197, 24, 0.1);
}

.imdb-result-info {
  flex: 1;
  min-width: 0; /* Important for flex truncation */
  overflow: hidden; /* Enable truncation */
}

.imdb-result-title {
  font-weight: bold;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0; /* Important for flex truncation */
}

/* Title text that can be truncated */
.imdb-result-title-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

/* Year should never truncate */
.imdb-result-year {
  color: var(--text-color);
  opacity: 0.6;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0; /* Never shrink the year */
}

.imdb-result-meta {
  font-size: 10px;
  opacity: 0.5;
  margin-top: 2px;
  color: #f5c518;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imdb-result-badge {
  background: #f5c518;
  color: #000;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0; /* Never shrink the badge */
}

.imdb-search-external {
  padding: 10px;
  background: #1a1a1a;
  border-top: 2px solid #f5c518;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky; 
  bottom: 0; 
  z-index: 10; 
}

/* Make results list scrollable */
.imdb-results-wrapper {        /* New class */
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.imdb-search-external:hover {
  background: rgba(245, 197, 24, 0.15);
}

.imdb-search-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.imdb-search-text {
  flex: 1;
  min-width: 0;
}

.imdb-search-label {
  font-weight: bold;
  font-size: 12px;
  display: block;
  color: #f5c518;
}

.imdb-search-query {
  font-size: 10px;
  opacity: 0.8;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imdb-search-action {
  background: #f5c518;
  color: #000;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}

.imdb-loading {
  padding: 15px;
  text-align: center;
  color: var(--text-color);
  opacity: 0.7;
}

.imdb-loading-spinner {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.imdb-loading-text {
  font-size: 12px;
}

#imdb-feedback {
  font-size: 11px;
  margin-top: 4px;
  min-height: 16px;
}

.imdb-feedback-success {
  color: #4CAF50;
}

.imdb-feedback-error {
  color: #f44336;
}

@media (max-width: 600px) {
  #imdb-autocomplete {
    max-height: 200px;
    min-width: 240px;
  }
  
  .imdb-result-title {
    font-size: 11px;
  }
  
  .imdb-result-year {
    font-size: 10px;
  }
}

/* ==================== BREADCRUMB TOP ==================== */
.breadcrumb-top {
  padding: 8px 12px;
  font-size: 0.9em;
  color: #999;
}

.breadcrumb-top ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb-top li {
  display: inline;
}

.breadcrumb-top a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-top a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb-top .current {
  color: #f9f9f9;
  font-weight: 500;
}

.breadcrumb-top .separator {
  color: #666;
  margin: 0 4px;
}

/* ==================== BREADCRUMB BOTTOM ==================== */
.breadcrumb-bottom {
  background: rgba(60, 60, 60, 0.3);
  border-top: 1px solid #444;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 0;
}

.breadcrumb-bottom .breadcrumb-title {
  font-size: 0.95em;
  color: #999;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb-bottom .breadcrumb-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breadcrumb-bottom .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}

.breadcrumb-bottom .emoji {
  font-size: 1.3em;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.breadcrumb-bottom a {
  color: var(--link-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.breadcrumb-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb-bottom .current {
  color: #888;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-top {
      font-size: 0.85em;
      padding: 6px 8px;
  }
  
  .breadcrumb-bottom {
      padding: 15px;
      margin-top: 30px;
  }
}