.sidebar {
    background-color: rgba(255, 255, 255, 0.8); /* Sets the background to white */
    padding: 2px; /* Adds space around the menu items inside the box */
		border-radius: 20px;
		width: 400px;
		height: 780px;
		position: fixed;
		top: 60px
		
			
}



.single .wp-block-post-featured-image,
.single .post-thumbnail {
  display: none !important;
}

/* === Character Index Page Styling === */
.character-index {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* Book titles */
.character-index h2 {
  font-size: 2.5rem;
  margin-top: 1.5em;
  color: #222;
  border-bottom: 2px solid #EC8523; /* accent line under book title */
  display: inline-block;
  padding-bottom: 4px;
}

/* List spacing */
.character-index ul {
  list-style: none;
  margin: 0.5em 0 1.5em;
  padding: 0;
}

/* Character links (buttons) */
.character-index li {
  margin: 6px 0;
}

.character-index a {
  display: inline-block;
  color: #000;                 /* white text */
  background-color: #FBC37A;   /* non-hover color */
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.character-index a:hover {
  background-color: #EC8523;   /* hover color */
  transform: translateY(-2px);
}

/* Style to match your warm buttons */
.wp-block-social-links .wp-social-link a {
  background-color: #FBC37A;
  color: #000;
  border-radius: 10px;
  transition: background .2s ease, transform .1s ease;
}
.wp-block-social-links .wp-social-link a:hover {
  background-color: #EC8523;
  transform: translateY(-2px);
}

/* Hide the default generic SVG inside each icon */
.wp-block-social-links .wp-social-link a svg { display: none; }

/* Put our custom icon in via ::before */
.wp-block-social-links .wp-social-link a::before {
  content: "";
  display: block;
  width: 1.1em;
  height: 1.1em;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Target by URL to swap the graphic */
.wp-block-social-links a[href*="discord.com"],
.wp-block-social-links a[href*="discordapp.com"] { position: relative; }
.wp-block-social-links a[href*="discord.com"]::before,
.wp-block-social-links a[href*="discordapp.com"]::before {
  background-image: url("https://feathermarked.com/wp-content/uploads/2025/10/discordlogo.png");  /* <-- replace */
}

.wp-block-social-links a[href*="ko-fi.com"] { position: relative; }
.wp-block-social-links a[href*="ko-fi.com"]::before {
  background-image: url("https://feathermarked.com/wp-content/uploads/2025/10/kofilogo.png");      /* <-- replace */
}
.social-logos .wp-social-link a svg { display:none; } /* hide default graphic */

/* place your logo as a background */
.social-logos .wp-social-link a::before{
  content:"";
  display:block; width:1.1em; height:1.1em;
  background-repeat:no-repeat; background-position:center; background-size:contain;
  margin: 0 auto;
}



/* target links by href */
.social-logos a[href*="discord.com"]::before,
.social-logos a[href*="discordapp.com"]::before{
  background-image:url("https://feathermarked.com/wp-content/uploads/2025/10/discordlogo.png");
}
.social-logos a[href*="ko-fi.com"]::before{
  background-image:url("https://feathermarked.com/wp-content/uploads/2025/10/kofilogo.png");
}

/* Clean circular social icons */
#socials-left.wp-block-social-links .wp-social-link a,
.wp-block-social-links .wp-social-link a {
  background: transparent !important; /* removes orange fill */
  border: none !important;
  box-shadow: none !important;
  color: inherit !important; /* keeps icon color normal */
  padding: 0.2em !important;
  border-radius: 50% !important; /* makes them circular */
  transition: transform 0.2s ease;
}

/* Optional hover effect */
.wp-block-social-links .wp-social-link a:hover {
  transform: scale(1.1);
}

/* Optional: set the icon color if it looks too dark */
.wp-block-social-links .wp-social-link a svg {
  fill: #EC8523 !important; /* or #000, or any color you like */
  width: 1.4em;
  height: 1.4em;
}

.payment-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Shared button style */
.payment-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FBC37A;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.2s ease, transform 0.1s ease;
}
.payment-buttons a:hover {
  background-color: #EC8523;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
