/* Core Layout and Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary-gradient: linear-gradient(135deg, #2563eb, #db2777);
  --text-primary: #1a1a1a; /* Updated to a softer black */
  --text-secondary: #4a5568; /* Updated to a softer gray */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa; /* Updated to a lighter gray */
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-yellow: #ff6c00;
  --border-color: #e2e8f0; /* Updated to a softer border color */
}

body {
  text-align: left;
  background: var(--primary-gradient);
  font-family: 'Inter', 'Poppins', sans-serif; /* Added Poppins as a secondary modern font */
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= container is 1000px wide  =========== */
#container {
  max-width: 1000px;
  background: var(--bg-primary);
  margin: 0 auto;
  padding: 0px;
  border: 1px solid var(--border-color);
  font-family: 'Inter', 'Poppins', sans-serif;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
}

#mainContent {
  /* width: 96%; */
  margin: 0px;
  float: left;
  padding: 0px 1rem 0px 1rem;
  background-color: white;
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  text-transform: capitalize;
  text-align: left;
  margin-top: 1rem;
  font-family: 'Inter', 'Poppins', sans-serif;
}

h1 { font-size: 2.25rem; } /* Slightly larger for better hierarchy */
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	padding:0 5px;
  font-size: 1rem;
  line-height: 1.6; /* Improved line height for readability */
  text-align: left;
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-secondary);
}

/* <P> styling like blockquote (FAQ) -  use <p class="faq-question"> and <p class="faq-answer">, used in the JUUL performer page as an example*/
p.faq-question {
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: #111;
    font-size: 1.1rem;
    margin: 1rem 0 0;
    padding: 18px 24px;
    background-color: transparent;
    transition: all 0.2s ease;
}

p.faq-question::before {
    content: "Q";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 1.5px solid #3498db;
    border-radius: 4px;
    color: #3498db;
    font-size: 0.8rem;
    font-weight: 600;
	margin-right: 15px;
}

p.faq-answer {
    gap: 16px;
    padding: 0 24px 24px;
    margin: 0 0 0 40px;
    color: #444;
	font-style: italic;
    line-height: 1.7;
    border-left: 1px solid #6cb5e6;
}

p.faq-answer::before {
    content: "A";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 1.5px solid #2ecc71;
    border-radius: 4px;
    color: #2ecc71;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 15px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    p.faq-question,
    p.faq-answer {
        padding-left: 16px;
        padding-right: 16px;
        margin-left: 0;
        gap: 12px;
    }
    
    p.faq-answer {
        border-left: none;
        padding-top: 12px;
        padding-bottom: 20px;
    }
    
    p.faq-question::before,
    p.faq-answer::before {
        width: 22px;
        height: 22px;
    }
}

ul, ol {
  font-size: 1rem;
  line-height: 1.6;
  margin-right: 3rem;
  text-align: left;
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-secondary);
}

ul li, ol li {
  margin: 0.5rem;
}

ul ul, ol ol {
  font-size: 0.95rem;
  margin: 0.4rem 0px;
}

ul ul li, ol ol li {
  margin: 0.4rem 0px;
}

table {
  font-size: 1rem;
  font-family: 'Inter', 'Poppins', sans-serif;
}

img {
  margin: 0.5rem;
  max-width: 100%;
  height: auto;
}

hr {
  border: none;
  height: 1px;
  background-color: #324e6442; 
}
/* Links */
a:link {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:visited {
  color: var(--accent-blue);
}

a:hover {
  color: var(--accent-yellow);
  text-decoration: underline; /* Added underline on hover for better UX */
}

tr.chtrsty {
  text-align: center;
}

/* ========== header and footer =========== */
#header {
  background: var(--bg-secondary); /* Updated to use CSS variable */
  text-align: center;
  font-weight: normal;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color); /* Updated to use CSS variable */
  font-size: 1rem;
}

#headerP {
  background: #eef2ff; /* Updated to a softer shade */
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 1000px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color); /* Updated to use CSS variable */
}

#footer {
  padding: 0px 0px 15px 0px;
  margin: 1rem 0px 0px 0px;
  font-size: 1rem;
  text-align: center;
  background: var(--bg-secondary); /* Updated to use CSS variable */
  position: relative;
  width: 99.8%;
  clear: both;
}

#donate {
  float: right;
  width: 160px;
  position: relative;
  right: 10px;
  top: 10px;
}

#footmessage {
  float: left;
  width: 65%;
  position: relative;
  top: 10px;
  left: 10px;
  text-align: center;
}

/* ========== TOP LEVEL NAVIGATOR STYLING =========== */
/* Navigation Container */
.nav1 {
  background: #003c53; /* Primary color */
  padding: 1rem;
  display: flex;
  justify-content: center; /* Center the menu */
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Navigation List */
.nav1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem; /* Spacing between links */
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center; /* Center items */
}

.nav1 ul li {
  margin: 0;
}

.nav1 ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem; /* Comfortable padding */
  border-radius: 8px; /* Rounded corners */
  transition: all 0.3s ease;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1); /* Subtle background */
}

.nav1 ul li a:hover {
  background: rgba(255, 255, 255, 0.2); /* Hover effect */
  transform: translateY(-2px); /* Slight lift on hover */
}

.nav1 ul li a.current {
  background: rgba(255, 255, 255, 0.3); /* Active link highlight */
  font-weight: 600;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .nav1 {
    padding: 0.75rem; /* Reduce padding on mobile */
  }

  .nav1 ul {
    gap: 0.5rem; /* Reduce spacing between links */
  }

  .nav1 ul li a {
    font-size: 0.9rem; /* Slightly smaller font size */
    padding: 0.5rem 1rem; /* Adjust padding for mobile */
  }
}

@media (max-width: 480px) {
  .nav1 ul {
    gap: 0.25rem; /* Further reduce spacing for very small screens */
  }

  .nav1 ul li a {
    font-size: 0.85rem; /* Smaller font size for very small screens */
    padding: 0.5rem; /* Adjust padding for very small screens */
  }
}
/* Navigation Container */


/* Navigator used in Utilities */
.navEV1 {
  padding: 4px 10px 0px 0px; /* Top Right Bottom Left */
  margin: 0px 1em 10px 1em; /* Top Right Bottom Left */
  background: #0035ff; /* Updated to a darker shade */
  height: 1.8em;
  width: 95%;
  text-align: center;
}

.navEV1 ul {
  width: 90%;
  padding: 0;
  list-style: none;
  margin: 3px 0px 0px 0px;
  float: left;
  text-align: center;
}

.navEV1 ul li {
  width: 16.5%;
  margin: 0px;
  padding: 0px;
  float: left;
}

.navEV1 li a:link,
.navEV1 li a:visited {
  font-size: 1rem;
  background: #0035ff; /* Updated to match .navEV1 background */
  display: block;
  color: white;
  line-height: 1.3em;
  text-decoration: none;
}

.navEV1 li a:hover {
  background: #ccccfe; /* Updated hover color */
  color: #0035ff; /* Updated text color for better contrast */
  font-weight: bold;
}

.navEV1 li a.current,
.navEV1 li a.current:hover,
.navEV1 li a.current:active {
  color: #0035ff; /* Updated text color */
  background: white; /* Updated background color */
  cursor: default;
  font-weight: bold;
}

/* ========== 2nd LEVEL NAVIGATOR STYLING =========== */
.nav2 {
  background: #ffffff; /* White background */
  padding: 1rem;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin: 0;
  overflow: hidden; /* Prevent overflow */
  display: flex;
  justify-content: center; /* Center the menu */
  align-items: center;
}

/* Navigation List */
.nav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping to the next line */
  gap: 0.5rem; /* Spacing between items */
  justify-content: flex-start; /* Align items to the start */
  width: 100%; /* Ensure the list takes full width */
}

.nav2 ul li {
  margin: 0;
  flex-shrink: 0; /* Prevent shrinking of menu items */
  text-align: center; /* Center text within each item */
  /*flex: 1 1 auto; /* Allow items to grow and shrink as needed */
  flex: 0 0 auto;
  min-width: 120px; /* Minimum width for each item */
}

.nav2 ul li a {
  color: #2563eb; /* Primary color for links */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 1rem; /* Comfortable padding */
  border-radius: 8px; /* Rounded corners */
  transition: all 0.3s ease;
  display: block; /* Make the link fill the entire li */
  background: rgba(37, 99, 235, 0.1); /* Subtle background */
  white-space: normal; /* Allow text to wrap */
  word-break: break-word; /* Break long words to prevent overflow */
}

.nav2 ul li a:hover {
  background: rgba(37, 99, 235, 0.2); /* Hover effect */
  transform: translateY(-2px); /* Slight lift on hover */
}

.nav2 ul li a.current {
  background: rgba(37, 99, 235, 0.3); /* Active link highlight */
  font-weight: 600;
  color: #2563eb; /* Primary color for active link */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .nav2 {
    padding: 0.75rem; /* Reduce padding on mobile */
  }

  .nav2 ul {
    gap: 0.25rem; /* Reduce spacing between items */
  }

  .nav2 ul li a {
    font-size: 0.9rem; /* Slightly smaller font size */
    padding: 0.5rem; /* Adjust padding for mobile */
  }
}

@media (max-width: 480px) {
  .nav2 ul li {
    min-width: 100px; /* Smaller minimum width for very small screens */
  }

  .nav2 ul li a {
    font-size: 0.85rem; /* Smaller font size for very small screens */
    padding: 0.4rem; /* Adjust padding for very small screens */
  }
}

/* ======== 3rd LEVEL NAVIGATOR STYLING IN SIDEBAR ========= */

/* Sidebar 1 Styling */
#sidebar1 {
  width: 200px; /* Fixed width for consistency */
  background: #ffffff; /* Clean white background */
  padding: 1rem;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-family: 'Inter', 'Poppins', sans-serif; /* Modern font stack */
  margin: 0 1rem 1rem 0; /* Spacing around the sidebar */
  float: left; /* Align to the left */
}

#sidebar1 h3,
#sidebar1 h5 {
  color: ##095597; /* Accent color for headings */
  text-align: center;
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
}

#sidebar1 h5 {
  font-size: 1rem;
  color: #4a5568; /* Softer color for subheadings */
  border-bottom: 2px solid #e2e8f0; /* Subtle divider */
  padding-bottom: 0.5rem;
}

#sidebar1 p {
  font-size: 0.9rem;
  color: #4a5568; /* Softer text color */
  text-align: center;
  margin: 0.5rem 0;
  line-height: 1.5;
}

#sidebar1 a {
  text-decoration: none;
  color: #2563eb; /* Accent color for links */
  font-weight: 700;
  transition: all 0.3s ease;
}

#sidebar1 a:hover {
  color: #1e40af; /* Darker shade on hover */
  text-decoration: underline; /* Underline on hover */
}

#sidebar1 ul {
  list-style: none;
  padding: 0;
  margin: 0px 0.5rem 0px 0.5rem;
}

#sidebar1 ul li {
  margin: 0.1rem 0;
  padding: 0.1rem;
  border-radius: 8px; /* Rounded corners for list items */
  transition: all 0.3s ease;
}

#sidebar1 ul li:hover {
  background: #f3f4f6; /* Light background on hover */
}

#sidebar1 ul li a {
	padding:8px;
  display: block;
  color: #0087ff; /* Softer text color */
  font-size: 1rem;
  border-radius: 4px;
  
}

#sidebar1 ul li a:hover {
  text-decoration:none;
  color: #ff6c00; /* Accent color on hover */
}

#sidebar1 ul li a .current{
	margin-left:5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #sidebar1 {
    width: 100%; /* Full width on small screens */
    float: none;
    margin: 0 0 1rem 0; /* Adjust margin for stacked layout */
  }

  #sidebar1 h3,
  #sidebar1 h5 {
    font-size: 1.1rem; /* Slightly smaller font size for mobile */
  }

  #sidebar1 p {
    font-size: 0.85rem; /* Smaller text for mobile */
  }

  #sidebar1 ul li a {
    font-size: 0.85rem; /* Smaller text for mobile */
  }
}

#sidebar1,
#sidebarAP {
	background: linear-gradient(135deg, #f0f0f0, #fafbff);
  width: 23%;
  padding: 1.1rem 0px 1.1rem 0px;
  border: 2px solid #bbbbbb42; /* Updated to a softer shade */
  margin-right:1.3rem;
  font-size: 85%; 
}

#sidebarAPx {
  width: 170px;
  padding: 5px;
  border: 5px inset #7d7db2; /* Updated to a softer shade */
  font-size: 90%;
  float: right;
}

#sidebarAP {
  float: right;
  background: #fff6cc; /* Updated to a softer shade */
  margin: 0px 0px 1.5rem 1.5rem;
}

#sidebarAP h3 {
  font-size: 0.95rem;
  margin: 4px;
  padding: 4px 5px;
  color: #003c53; /* Updated to a darker shade for better contrast */
  text-align: center;
  border-bottom: 3px double #003c53; /* Updated to match text color */
}

#sidebarAP p {
  padding: 0px 0.1rem;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

#sidebar1s {
  float: left;
  width: 70px;
  background: #e5e5ff; /* Updated to a softer shade */
  padding: 0.1rem 0px 0.1rem 0px;
  border: 2px solid #7d7db2; /* Updated to a softer shade */
  margin: 0px 1.5rem 1.5rem 0px;
  clear: left;
}

@media (max-width: 768px) {
  #sidebar1, #sidebarAP {
    width: 32%;
  }
}

@media (max-width: 480px) {
  #sidebar1, #sidebarAP {
    width: 99%;
  }
}

/* Sidebar Container */
#sidebarR {
  width: 14rem; /* Fixed width for consistency */
  background: #ffffff; /* White background */
  padding: 1.5rem;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin: 0 0 1.5rem 1.5rem; /* Spacing around the sidebar */
  float: right; /* Align to the right */
}

/* Sidebar Heading Styling */
#sidebarR h3 {
  color: #FFF; /* Accent color for headings */
  text-align: center;
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 2px solid #e2e8f0; /* Subtle divider */
  padding-bottom: 0.75rem;
}

/* Sidebar Paragraph Styling */
#sidebarR p {
  font-size: 0.9rem;
  color: #4a5568; /* Softer text color */
  text-align: left;
  margin: 0.5rem 0;
  line-height: 1.5;
}

/* Sidebar List Styling */
#sidebarR ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebarR ol li {
  margin: 0.75rem 0;
  padding: 0.5rem;
  border-radius: 8px; /* Rounded corners */
  transition: all 0.3s ease;
}

#sidebarR ol li a {
  color: #2563eb; /* Primary color for links */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem; /* Comfortable padding */
  display: block; /* Make the link fill the entire li */
  background: rgba(37, 99, 235, 0.1); /* Subtle background */
  border-radius: 8px; /* Rounded corners */
  transition: all 0.3s ease;
}

#sidebarR ol li a:hover {
  background: rgba(37, 99, 235, 0.2); /* Hover effect */
  transform: translateY(-2px); /* Slight lift on hover */
}

#sidebarR ol li a.current {
  background: rgba(37, 99, 235, 0.3); /* Active link highlight */
  font-weight: 600;
  color: #2563eb; /* Primary color for active link */
}

#sidebarR a:link {
	font-weight: 600;
}

#sidebarR a:hover {
	font-weight: 600;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  #sidebarR {
display:none;
  }
}

.recent p {
  font-size: 0.9rem;
  margin: 0px;
  border-bottom: 1px solid #beaee8; /* Updated to a softer shade */
  background: white;
  padding: 4px 6px;
  line-height: 1.2;
  width: 95%;
}

.recent h3 {
  background: #2ab9f0; /* Updated to a darker shade for better contrast */
  text-align: center;
  text-transform: none;
  color: white;
  font-size: 1.2em;
  font-weight: 500;
  padding: 0.4em 0.1em;
  margin: 0px;
  border-radius:5px;
  /* border-bottom: 4px solid #beaee8;  */
}

.nav3,
.nav3s {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  text-align: center;
  margin: 0 0 1rem 0;
  color: #1a1a1a; /* Updated to a softer black */
  font-size: 1.5rem;
  font-weight: 700;
}

.nav3 ul,
.nav3s ul {
  margin: 0.3rem 0;
  padding: 0;
  list-style: none;
}

.nav3 ul li,
.nav3s ul li {
  margin: 0;
  font-size: 0.9rem;
  padding: 1px;
  margin-bottom: 0.4rem;
  border-left: 1.5px solid #003c5338; /* Updated to match text color */
  border-bottom: 1.5px solid #062d3c2e; /* Updated to match text color */
}

.nav3s ul li {
  background: #adcbe8; /* Updated to a softer shade */
  width: 3.5rem;
  text-align: center;
}

.nav3 li a,
.nav3s li a {
  text-decoration: none;
  color: #1a1a1a; /* Updated to a softer black */
}

.nav3 li a:link,
.nav3 a:visited,
.nav3s li a:link,
.nav3s li a:visited {
  text-decoration: none;
  display: block;
  margin: 0;
  line-height: 120%;
  background: #FFF; /* Updated to a softer shade */
  padding-left: 0.4em;
}

.nav3s a:link,
.nav3s a:visited {
  border: 1px solid #003c53; /* Updated to match text color */
  text-align: center;
  color: #1a1a1a; /* Updated to a softer black */
}

.nav3 li a:hover {
  background: #e3e3ff; /* Updated to a softer shade */
  border-radius:5px;
}

.nav3 li a.current,
#nav3 li a.current:hover,
#nav3 li a.current:active {
  background: #e3e3ff;
  cursor: default;
}

.nav3 ul a.last {
  border-bottom: none;
}

.nav3 ul ul {
  margin: 0px 0.5rem 0px 0.5rem;
  padding: 0px;
  list-style: none;
}

.nav3 ul ul li {
  border-left: 1px solid #003c53; /* Updated to match text color */
  border-bottom: 1px solid #003c53; /* Updated to match text color */
  font-size: 0.9rem;
}

.nav3s li a.current,
.nav3s li a.current:hover,
.nav3s li a.current:active {
  background: white;
  cursor: default;
}

.nav3s li a:hover {
  color: #1a1a1a; /* Updated to a softer black */
  background: #fff6cc; /* Updated to a softer shade */
}

.nav3s ul ul li {
  background: #b2a66b; /* Updated to a softer shade */
  width: 6em;
  text-align: center;
  margin-left: 3em;
  margin-bottom: 1px;
}

.nav3s ul ul li a {
  background: #b2a66b; /* Updated to a softer shade */
  width: 6em;
  text-align: center;
  margin-left: 0em;
}

/* Alphabetical List Styling */
.alphalist {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 0.9rem;
  font-weight: normal;
  color: #003c53; /* Updated to a darker shade for better contrast */
  background: #efefff; /* Updated to a softer shade */
  margin-top: 1.5rem;
  text-align: left;
  vertical-align: top;
  padding: 4px;
  border: 1px solid #003c53; /* Updated to match text color */
}

.alphalist th {
  font-size: 1rem;
  padding: 0px;
  background: #003c53; /* Updated to a darker shade for better contrast */
  color: white;
  text-align: center;
}

.alphaNav {
  font-size: 0.85rem;
  width: inherit;
  padding: 0px;
  margin: 0px 0px 1rem 0px;
  height: 2.5rem;
}

.alphaNav ul {
  width: 100%;
  list-style: none;
  padding: 0px;
  margin: 0px;
  background: #fff6cc; /* Updated to a softer shade */
}

.alphaNav ul li {
  width: 5%;
  margin: 0px;
  padding: 0px;
  text-align: center;
  float: left;
}

.alphaNav a:link,
.alphaNav a:visited {
  background: #fff6cc; /* Updated to a softer shade */
  color: #1a1a1a; /* Updated to a softer black */
  line-height: 1.3rem;
  display: block;
  text-decoration: none;
}

.alphaNav a:hover {
  background: #ddd; /* Updated to a softer shade */
  color: #003c53; /* Updated to match text color */
  font-weight: bold;
}

.alphaNav li a.current,
.alphaNav li a.current:hover,
.alphaNav li a.current:active {
  color: #003c53; /* Updated to match text color */
  background: #ccccee; /* Updated to a softer shade */
  font-weight: bold;
}

/* Performer Name Styling */
#AperfName {
  background: #eadb8c; /* Updated to a softer shade */
  margin: 0px;
  position: relative;
  height: 7.3rem;
  border: 1px solid #1a1a1a; /* Updated to a softer black */
  text-align: center;
}

#AperfNP {
  margin: 4px 0px;
  width: 100%;
  padding: 0px;
  clear: both;
  position: absolute;
}

#AperfNP p {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1.2rem;
  font-weight: bold;
}

#AperfName p {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
  color: #1a1a1a; /* Updated to a softer black */
}



#AperfName #perfKing a img {
  text-decoration: none;
  border-width: 0px;
}

#AperfName #perfKing {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
}
  /* This is a button, for the submit song in the profile page */
.submittrack {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  padding: 10px 8px;
  border-radius: 8px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  /* Modern gradient background */
  background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
  color: white;
  
  /* Subtle border for depth */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .submittrack {display:none;
	
}}

@media (max-width: 480px) {
  .submittrack {display:none;
	
}}

  .submittrack a:link{
	  color:white;
	  text-decoration:none;
	  font-weight: 800;
  }
  .submittrack a:visited{
	  color:white;
	  text-decoration:none;
	 font-weight: 800;
  }  

.submittrack:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #5d7df4 0%, #9a6ad9 100%);
}

.submittrack:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional focus style for accessibility */
.submittrack:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(110, 142, 251, 0.4);
}

 /* This is a button, for the submit song in the profile page END*/
 
  /* Forum Profile button */
.forumprofile {
  position: absolute;
  top: 61px;
  right: 15px;
  border: none;
  padding: 10px 8px;
  border-radius: 8px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  

  
  /* Modern gradient background */
  background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
  color: white;
  
  /* Subtle border for depth */
  border: 1px solid rgba(255, 255, 255, 0.2);
}
  .forumprofile a:link{
	  color:white;
	  text-decoration:none;
	  font-weight:800;
	 
  }
  .forumprofile a:visited{
	  color:white;
	  text-decoration:none;
	 font-weight:800;
  }  

@media (max-width: 768px) {
  .forumprofile {display:none;
	
}}

@media (max-width: 480px) {
  .forumprofile {display:none;
	
}}

.forumprofile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #5d7df4 0%, #9a6ad9 100%);
}

.forumprofile:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional focus style for accessibility */
.forumprofile:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(110, 142, 251, 0.4);
}
  /* Forum Profile button END*/ 

#AperfName img {
  margin: 4px;
}

/* Arrows and Article Titles */
.arrows {
  margin: 0px;
}

.articleTitle {
  padding-right: 0em;
  padding-left: 0em;
  font-style: italic;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1.1em;
}

/* Box and Div Styling */
.bckWhite {
  background: white;
  border: 2px solid #003c53; /* Updated to match text color */
}

.boxRightDiv {
  background: #fff6cc; /* Updated to a softer shade */
  padding: 0.5rem;
  padding-top: 0px;
  font-size: 0.9rem;
  float: right;
  margin-left: 1rem;
  margin-top: 1rem;
  border: 4px inset #beaee8; /* Updated to a softer shade */
  text-align: center;
}

.cart {
  border: 1px solid #003c53; /* Updated to match text color */
  width: 140px;
  float: right;
  padding: 3px;
  text-align: center;
}

.centeredIntro {
  margin: 10px auto;
  text-align: center;
  background-color: #e5e5ff; /* Updated to a softer shade */
  border: 2px solid #003c53; /* Updated to match text color */
  border-radius: 20px; /* Combined border-radius properties */
  padding: 0.5rem;
  width: 90%;
}

.centerImg {
  text-align: center;
  font-size: 0.9rem;
  margin: 2em auto;
  width: 95%;
}

.centerImage {
  text-align: center;
  margin: 1rem auto;
  border: 1px solid #003c53; /* Updated to match text color */
  padding: 3px;
}

.centertext {
  text-align: center;
}

.clip1 {
  border: 1px solid rgba(104, 139, 166, 1); /* Updated to a softer shade */
}

.clip2 {
  width: 90%;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  margin-left: 5%;
  margin-top: 30px;
  border: 1px solid rgba(104, 139, 166, 1); /* Updated to a softer shade */
}

.clearfloat {
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}
/* Columns and Layout Styling */
.columns {
  width: 24%;
  float: left;
  line-height: 24px;
  padding: 10px 0px;
  text-align: left;
  margin-top: 0px;
}

.columns p {
  font-size: 0.9rem;
  color: #1a1a1a; /* Updated to a softer black */
}

.columns p a:link {
  text-decoration: none;
  color: #1a1a1a; /* Updated to a softer black */
}

.columns p a:hover {
  color: #3b82f6; /* Updated to match accent color */
}

.columns h4 {
  text-align: center;
  color: #3b82f6; /* Updated to match accent color */
}

.columns h4 a:link,
.columns h4 a:visited {
  color: #1a1a1a; /* Updated to a softer black */
  padding: 2px;
  text-decoration: none;
}

.columns p a:link,
.columns p a:visited {
  color: #1a1a1a; /* Updated to a softer black */
  padding: 2px;
  text-decoration: none;
}

.columns p a:hover,
.columns p a:hover {
  background: #ccccee; /* Updated to a softer shade */
}

.column_half {
  width: 50%;
  float: left;
  margin-top: 0px;
}

.column_half p {
  font-style: normal;
  font-size: 0.9rem;
  margin: 0px;
  padding: 0px;
}

.column_half.left_half h2 {
  color: white;
  text-align: center;
}

/* Breadcrumbs Styling */
.crumbs {
  font-size: 0.9rem;
  border-bottom: 1px solid #003c53; /* Updated to match text color */
}

/* Image and Div Styling */
.divimgrt {
  padding: 0.5em;
  margin-left: 1em;
  float: right;
  font-size: 0.8em;
}

.divnote {
  margin: 1rem;
  padding: 0.8rem;
  border: 5px double #b2a66b; /* Updated to a softer shade */
}

.divnote h5 {
  text-align: center;
  margin: 0.3rem auto;
}

.divrt {
  margin: 1em 0px 1em 1em;
  padding: 0.4em;
  float: right;
  width: 12em;
  border: 2px solid #eadb8c; /* Updated to a softer shade */
}

.divrt p {
  font-size: 0.9em;
  line-height: 105%;
}

/* Figure and Caption Styling */
figure {
  width: 360px;
  max-width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.figure7 {
  width: 700px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

figure img {
  max-width: 100%;
}

figcaption {
  display: block;
  margin-top: 1em;
  font-size: 0.85em;
}

/* Firmware Styling */
#firmware p {
  font-size: 1rem;
}

/* Float Styling */
.floatleft {
  float: left;
  margin-left: 0px;
  margin-right: 1rem;
}

.floatright {
  float: right;
  margin-right: 0px;
  margin-left: 1rem;
  margin-bottom: 5rem;
  width: 300px;
  height: 5em;
  text-align: center;
  border-style: double;
  border-color: #003c53; /* Updated to match text color */
}

.fltlft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.fltlftmg {
  float: left;
  padding: 0.5rem;
  border: 1px solid #333;
  margin-bottom: 1rem;
  margin-right: 1rem;
  margin-top: 0px;
}

.fltrt {
  float: right;
  margin-left: 1rem;
  margin-bottom: 3rem;
}

.fltrtimg {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
  margin-top: 0px;
  padding: 0.5rem;
  /* border: 1px solid #333; */
}

/* Font Styling */
.font9 {
  font-size: 0.9rem;
}

.font8 {
  font-size: 0.8rem;
}

.fontblue {
  color: #003c53; /* Updated to match text color */
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1.3rem;
  margin-right: 2rem;
}

.fontp9 {
  color: #1a1a1a; /* Updated to a softer black */
  font-size: 0.9em;
}

.fontred {
  color: #ff0000; /* Updated to a brighter red */
  background: #dedede; /* Updated to a softer shade */
}

.fontblue1 {
  color: #010133; /* Updated to a darker shade */
  background-color: #e5e5ff; /* Updated to a softer shade */
}

.footnote {
  font-size: 0.9em;
  line-height: 110%;
  margin-top: 0px;
  margin-right: 2em;
  margin-left: 3em;
  text-indent: -1em;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
}
/* Group Styling */
.group {
  margin: 1rem 4px 0px 4px;
  padding: 2px 2px;
}

.group p {
  font-size: 0.9rem;
}

.group h2 {
  font-size: 1.7rem;
  margin: 0px;
  text-align: center;
  padding: 0.4rem 0px;
}

.group h2 a:link,
.group h2 a:visited {
  display: block;
  text-decoration: none;
  color: white;
}

.group h4 {
  font-size: 1.5rem;
  margin: 4px;
  padding: 0.2rem;
  text-align: left;
}

.group h4 a:link,
.group h4 a:visited {
  text-decoration: none;
  color: #660066; /* Updated to a softer shade */
}

/* Heading Box Styling */
.h1box {
  font-size: 180%;
  text-align: center;
  border: 7px groove #7d7db2; /* Updated to a softer shade */
  color: #003c53; /* Updated to match text color */
  background: #ccccee; /* Updated to a softer shade */
  padding: 0.4em 2em;
  display: block;
  font-weight: bold;
  margin: 0px 0.4em 0em 0.4em;
}

.h1boxNoSide {
  font-size: 170%;
  text-align: center;
  border: 7px groove #7d7db2; /* Updated to a softer shade */
  color: #003c53; /* Updated to match text color */
  background: #ccccee; /* Updated to a softer shade */
  padding: 0.3em 1.5em;
  display: block;
  font-weight: bold;
  margin: 1rem 2rem;
}

.h1box2Side {
  font-size: 180%;
  text-align: center;
  border: 7px groove #7d7db2; /* Updated to a softer shade */
  color: #003c53; /* Updated to match text color */
  background: #ccccee; /* Updated to a softer shade */
  padding: 0.4em 1em;
  margin-bottom: 1em;
  display: block;
  margin-left: 5.5em;
  margin-right: 5.5em;
  font-weight: bold;
}

/* Highlight Styling */
.hilite {
  color: white;
  font-size: 0.85rem;
  background: #999; /* Updated to a softer shade */
}

.hilite1 {
  color: white;
  background-color: #688ba6; /* Updated to a softer shade */
  padding: 0.4rem 1rem;
  border: 5px inset #688ba6; /* Updated to a softer shade */
}

.hilite2 {
  color: white;
  background-color: #444; /* Updated to a darker shade */
  padding: 0.4rem 1rem;
  border: 5px inset #b2a66b; /* Updated to a softer shade */
}

.hilite4 {
  color: #660066; /* Updated to a softer shade */
  background-color: #fff6cc; /* Updated to a softer shade */
  border: 2px solid #664d00; /* Updated to a softer shade */
  text-decoration: none;
}

.hilite4 a:link {
  text-decoration: none;
}

.hilite4 a:hover {
  background-color: #b2a66b; /* Updated to a softer shade */
}

.hiliteBigBlue {
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  background: #12106e; /* Updated to a darker shade */
  padding: 0.1em 0.3em;
  line-height: 1.2;
}

.highlightBlue,
.highlightBlueR {
  color: white;
  background-color: #003c53; /* Updated to match text color */
  padding: 0.4rem;
  margin: 1rem;
}

.highlightBlueR {
  margin-left: 190px;
}

.highlightBlueSel {
  border: 2px solid #003c53; /* Updated to match text color */
  font-weight: bold;
  color: #003c53; /* Updated to match text color */
  padding: 0.3rem 0.4rem;
  background-color: #eee; /* Updated to a softer shade */
}

/* Image and Info Box Styling */
.imgfltrt {
  font-size: 90%;
  color: #333;
  text-align: center;
  margin: 6px;
  padding: 2px;
  float: right;
}

.infoBlueBox {
  background: #e5e5ff; /* Updated to a softer shade */
  border: 2px solid #7d7db2; /* Updated to a softer shade */
  padding: 0.2rem 1rem;
  margin-left: 3rem;
  margin-right: auto;
  /* width: 80%; */
  max-width:70%;
  line-height: 120%;
  margin-top: 1rem;
}

.infoBlueDiv {
  background: #eeeeff; /* Updated to a softer shade */
  border: 4px inset #12106e; /* Updated to a darker shade */
  padding: 0.3em 1em;
  margin-left: auto;
  margin-top: 1rem;
  margin-right: auto;
  line-height: 120%;
  width: 90%;
}

 .infoNote { 
   background: #dff3ff;
   border: 1px solid #e6e6e6;
   border-radius: 10px ;
   padding: 1rem; 
   margin-left: 3rem; 
   margin-right: 3rem; 
 } 

/* .infoNote { */
  /* background: #dff3ff; */
  /* border: 1px solid #e6e6e6; */
  /* border-radius:15px; */
  /* padding: 1rem; */
  /* margin-left: 15rem; */
  /* margin-right: 3rem; */
/* } */

.infoNote h3 {
  margin: 0.2rem 0px;
}

.infoNoteS {
  background: #fff6cc; /* Updated to a softer shade */
  border: 3px solid #b2a66b; /* Updated to a softer shade */
  padding: 0.3rem 1rem;
  margin-left: 4em;
  margin-right: 4em;
  line-height: 97%;
}

.infoYellowBox {
  background: #fff6cc; /* Updated to a softer shade */
  border: 5px double #b2a66b; /* Updated to a softer shade */
  padding: 0.2em 1em;
  width: 80%;
  line-height: 120%;
  font-size: 1em;
  margin: 1em auto;
}

/* Intro Paragraph Styling */
.intropara {
  margin: 0px 1rem 2rem 0px;
  padding: 0.5rem;
  border: 2px solid #1a1a1a; /* Updated to a softer black */
  height: 90px;
  background-color: beige;
}

.lsideintro {
  /* margin: 0px 0px 1rem 180px; */
  /* text-align: center; */
  /* background-color: #fff6cc;  */
  /* border: 2px solid #b2a66b;  */
  /* border-radius: 20px;  */
  /* padding: 0.5rem; */
/* } */

	background: #fff6cc;
	margin: 0px 1rem 1rem 15rem;
	padding: 1rem;
	font-size: 0.95rem;
	border: 5px inset #b2a66b;
	border-radius: 20px;
  }

/* Jukebox Styling */
#jukeboxNew {
  width: 300px;
  float: right;
  clear: right;
  padding: 5px;
  background: #f3f3ff; /* Updated to a softer shade */
  margin: 1rem 0px 1rem 1rem;
  font-size: 1rem;
  border: 2px solid #eaeaea; /* Updated to match text color */
  border-radius: 15px;
}

#jukeboxNew h3 {
  font-size: 1rem;
  text-align: center;
  margin: 0px 0px 0.5rem 0px;
}

#jukeboxNew p {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  margin: 3px 0px;
  font-size: 0.95rem;
}

#jukebox {
  padding: 5px;
  margin-left: 1rem;
  font-size: 1rem;
}

#jukebox h3 {
  text-align: center;
  margin: 0px 0px 0.5rem 0px;
}

#jukebox p {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  margin: 0;
  border-top: 1px dashed #003c53; /* Updated to match text color */
}

.jukeboxS {
  margin: 6px;
  padding: 8px;
  float: right;
  border: 4px inset #b2a66b; /* Updated to a softer shade */
  text-align: center;
  background: #bfe0ff; /* Updated to a softer shade */
}

.jukeboxS h3 {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  color: #003c53; /* Updated to match text color */
  margin: 0px 0px 5px;
}

/* Keyboard Line Styling */
#kbdline {
  font-size: 1.5rem;
  margin-top: 1rem;
  padding: 4px;
  text-align: center;
  color: white;
  background-color: #003c53; /* Updated to match text color */
  margin-bottom: 1rem;
}

/* Last Update Styling */
.lastupdate {
  font-size: 0.9rem;
  font-style: italic;
  color: #1a1a1a; /* Updated to a softer black */
  margin: 0.5rem;
}

/* Left Box Styling */
.left12 {
  margin: 1rem 1rem 1rem 12rem;
  padding: 1rem;
  border: 1px solid #ffcc00; /* Updated to a softer shade */
  width: 100%;
}

.leftBox {
  width: 170px;
  border: 5px inset #688ba6; /* Updated to a softer shade */
  text-align: center;
  padding: 0.5rem;
  float: left;
  margin-right: 1rem;
  color: #003c53; /* Updated to match text color */
  background-color: #fff6cc; /* Updated to a softer shade */
}

.leftBox h6 {
  text-align: center;
  margin: 0px 10px 0px 0px;
  padding: 0px 0px 0.5rem 0px;
}

.Lh1box {
  font-size: 100%;
  text-align: center;
  border: 7px groove #7d7db2; /* Updated to a softer shade */
  color: #003c53; /* Updated to match text color */
  background: #ccccee; /* Updated to a softer shade */
  padding: 0.4em 1em;
  display: block;
  margin: 0px 0.4em 4px 0.4em;
}

.Lh1box h1 {
  margin: 0px;
  padding: 0px;
  font-size: 200%;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  border-width: 0px;
  border-style: none;
}

/* Line Styling */
.line3,
.line4 {
  font-size: 0.9rem;
  padding: 2px;
  margin: 0px;
}

.line4 h4 a:link,
.line3 h4 a:link {
  color: #003c53; /* Updated to match text color */
  text-decoration: none;
}

.line4 h6,
.line3 h6 {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.line4 h6 a,
.line3 h6 {
  text-decoration: none;
}

.line4 h6 a:link,
.line3 h6 a:link {
  color: #003c53; /* Updated to match text color */
  padding: 0.2rem 1rem;
}

.line4 h6 a:hover,
.line3 h6 a:hover {
  background: #ccccee; /* Updated to a softer shade */
}

.line3 ul,
.line4 ul {
  color: #1a1a1a; /* Updated to a softer black */
  width: 97%;
  float: left;
  list-style: none;
  margin: 3px 0px;
  padding: 3px;
}

.line3 ul li,
.line4 ul li {
  margin: 3px;
  padding: 0px;
  float: left;
  height: 2.4rem;
}

.line3 ul li {
  width: 32%;
}

.line4 ul li {
  width: 24%;
}

.line4 li a:link,
.line4 li a:visited {
  line-height: 1.2em;
  color: #1a1a1a; /* Updated to a softer black */
  padding: 3px;
  text-decoration: none;
}

.line3 li a:link,
.line3 li a:visited {
  color: #1a1a1a; /* Updated to a softer black */
  padding: 2px;
  text-decoration: none;
}

.line3 li a:hover,
.line4 li a:hover {
  background: #ccccee; /* Updated to a softer shade */
}
/* Links Div Styling */
.linksdiv {
  padding-top: 1em;
  border-top: 4px solid #7e7db1; /* Updated to a softer shade */
  margin: 1em 2em;
  padding-bottom: 1em;
  font-size: 0.9em;
  line-height: 120%;
  float: left;
}

.linksdiv img {
  margin: 0px 8px 4px 0px;
  border-top: 4px ridge #3f3e58; /* Updated to a softer shade */
  border-right: 4px ridge #7e7db1; /* Updated to a softer shade */
  border-bottom: 4px ridge #7e7db1; /* Updated to a softer shade */
  border-left: 4px ridge #3f3e57; /* Updated to a softer shade */
  text-decoration: none;
}

/* Music Banner Styling */
#MBtitle {
  border: 7px groove #7d7db2; /* Updated to a softer shade */
  color: #003c53; /* Updated to match text color */
  background: #ccccee; /* Updated to a softer shade */
  text-align: center;
  margin: 0 1em 1.5em 1em;
  padding: 0.1em 0.5em 0 0.5em;
}

#MBtitle h1 {
  margin: 0px;
  padding: 0px;
  font-size: 2.2em;
}

#MBtitle .author {
  font-size: 1em;
  margin-top: 0px;
  padding-top: 0.5em;
}

#MBHead h1 {
  border: 7px groove #7d7db2; /* Updated to a softer shade */
  margin: 0px 1em 0.4em 5.5em;
  padding: 0.2em 0.5em;
  background: #ccccee; /* Updated to a softer shade */
  text-align: center;
  display: block;
  color: #003c53; /* Updated to match text color */
}




/* Music Download Styling */
/* Music Download Styling */
.mbDownload {
  background: #fff6cc; /* Updated to a softer shade */
  margin: 0px 1rem 1rem 17rem; /* Default margin for larger screens */
  padding: 1rem;
  font-size: 0.95rem;
  border: 5px inset #b2a66b; /* Updated to a softer shade */
  border-radius: 20px;
}

.mbDownload h3 {
  margin: 0px auto;
  padding: 0px;
  font-size: 1.1rem;
  color: #635a34; /* Updated to a softer shade */
}

.mbDownload ul {
  margin: 0;
  padding: 1rem;
}

.mbDownload ul li {
  font-size: 0.9rem;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  .mbDownload {
    margin: 0px 1rem 1rem 1rem; /* Reduce left margin for smaller screens */
    padding: 0.75rem; /* Slightly reduce padding */
    font-size: 0.85rem; /* Slightly reduce font size */
  }

  .mbDownload h3 {
    font-size: 1rem; /* Reduce heading font size */
  }

  .mbDownload ul {
    padding: 0.75rem; /* Reduce padding for lists */
  }

  .mbDownload ul li {
    font-size: 0.8rem; /* Reduce list item font size */
  }
}

/* Not Ready Styling */
.notready {
  color: #666; /* Updated to a softer shade */
  background: #dedefe; /* Updated to a softer shade */
}

/* Page Title Styling */
.pageTitle {
  font-size: 2em;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #0025ff, #db0085); /* Updated gradient */
  padding: 1.3em 2em;
  font-weight: bold;
  margin: 1rem auto 0.5rem auto;
  /* width: 87%; */
}

.pageTitle h1 {
  font-size: 1.3em;
  text-align: center;
  color: white;
  font-weight: bold;
  margin: 1rem auto 0.5rem auto;
  width: 85%;
}

@media (max-width: 480px) {
  .pageTitle h1 {
	font-size: 1em;
}}

.pageTitle .author {
  color:#FFF;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1.5rem;
  /* font-style: italic; */
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.1rem;
  font-weight: bold;
}

.pageTitle .dateEntry {
  font-size: 1.2rem;
  font-style: normal;
  text-transform: capitalize;
  text-align: center;
}

/* Performer Name Styling */
#perfName {
  /* background: #f2f1ff; /* old */ 
  background: #f4f7ff;
  height: 7.5rem;
  position: relative;
}

#perfName #perfHimg {
  position: absolute;
  left: 10px;
  top: 10px;
  /* width: 80px; */
  text-decoration: none;
  border: none;
  margin-bottom: 15px;
}

#perfName #perfKing a img {
  text-decoration: none;
  border-width: 0px;
}

#perfName #perfKing {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
}

#perfName img {
  margin: 28px 4px 4px 4px;
}

	.profile-img{
		/* float: left; */
		border-radius:100%;
		width: 130px;
        height: 130px;
		object-fit: cover;
		}
	
	@media (max-width: 768px) {.profile-img {
  width: 100px;
  height: 100px;
	}}
	@media (max-width: 480px) {.profile-img {			
  width: 100px;
  height: 100px;
  
	}}
	}}
	
	@media (max-width: 768px) {#perfName img {
margin-top:40px;
	}}
	@media (max-width: 480px) {#perfName img {			
margin-top:40px;
  
	}}
	}}	
	

.Performer {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  margin-top: 15px;
  margin-bottom: 0px;
}

.Performer h1{
	font-size: 1.4em;
  text-align: center;
  color: #224175;
  font-weight: bold;
  margin:1rem auto 0.5rem auto;
  width: 85%;
}

@media (max-width: 768px) {
  .Performer h1 {
	font-size: 1.3em;
}}

@media (max-width: 480px) {
  .Performer h1 {
	font-size: 1.3em;
}}

.profile-text {
	margin-top: 45px;
	}

/* Performer Picture Styling */
#perfPicture {
  width: 250px;
  float: left;
  margin: 0px 1rem 1rem 0px;
  padding: 3px;
}

#perfPicture p {
  font-size: 0.9rem;
}

#perfSongs {
  border: 3px inset navy;
  padding: 5px;
  margin: 0.5rem 0px;
  background: #eeeeff; /* Updated to a softer shade */
}

#perfSongs h5 {
  text-align: center;
  margin: 0.3rem 0px;
}

#perfSongs p {
  font-size: 0.85rem;
  text-align: left;
  margin: 0.2rem 0px;
}
/* PR Banner Styling */
#PRbanner {
  font-size: 2rem;
  text-align: center;
  border: 7px groove #7d7db2; /* Updated to a softer shade */
  color: #003c53; /* Updated to match text color */
  background: #ccccee; /* Updated to a softer shade */
  padding: 0.3rem 1rem;
  font-weight: bold;
  margin: 0.5rem auto 0.5rem auto;
}

.pr2 {
  text-align: center;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  padding: 0.5rem 1.5rem;
  color: #1a1a1a; /* Updated to a softer black */
  font-size: 1.5rem;
  background-color: #ddd; /* Updated to a softer shade */
  width: 80%;
  margin: 1rem auto;
  border: 2px solid #ff0000; /* Updated to a brighter red */
  border-radius: 16px;
}

/* Pro Styling */
.proR {
  font-size: 1rem;
  color: #003c53; /* Updated to match text color */
  font-weight: 600;
}

.proA {
  color: #1a1a1a; /* Updated to a softer black */
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
}

.proQ {
  color: #1a1a1a; /* Updated to a softer black */
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  background-color: #fff6cc; /* Updated to a softer shade */
  padding: 0.5rem 1rem;
}

/* Quote Styling */
.quote {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1em;
  line-height: 120%;
  color: #003c53; /* Updated to match text color */
  margin-right: 1em;
  margin-left: 1em;
}

.quotediv {
  margin: 1rem;
  padding: 0.5rem 1rem;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
}

/* Right Image Styling */
.rightimg {
  text-align: center;
  float: right;
  margin-top: 0px;
  padding: 0px 0px 0px 10px;
  width: 410px;
  margin-right: 0px;
  margin-bottom: 0px;
}

/* RIP Styling */
.rip {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  padding: 0.5rem 1.5rem;
  color: #1a1a1a; /* Updated to a softer black */
  font-size: 1.5rem;
  background-color: #ddd; /* Updated to a softer shade */
	width: 20%;
  margin: 1rem auto;
  border: 2px solid #ff0000; /* Updated to a brighter red */
  border-radius: 16px;
}

/* RIP Styling */
.rip2 {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  padding: 0.5rem 1.5rem;
  color: #1a1a1a; /* Updated to a softer black */
  font-size: 1rem;
  background-color: #ddd; /* Updated to a softer shade */
  margin: 1rem auto;
  border: 2px solid #ff0000; /* Updated to a brighter red */
  border-radius: 16px;
}

.ripAP {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  padding: 0.3rem 1rem;
  color: #ff0000; /* Updated to a brighter red */
  width: 18%;
  font-size: 1.2rem;
  background-color: #eee; /* Updated to a softer shade */
  margin: 5px auto;
  border: 3px solid #1a1a1a; /* Updated to a softer black */
  float: right;
}

/* Row Styling */
.row {
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: inline-block;
}

#rside {
  float: right;
  width: 250px;
  border: 4px double #003c53; /* Updated to match text color */
  padding: 0.5rem;
  margin-left: 1em;
  margin-right: 0px;
  background: #fff6cc; /* Updated to a softer shade */
}

#rside p {
  color: #663300; /* Updated to a softer shade */
  line-height: 1.2;
  font-size: 0.9em;
  margin: 5px 0px;
}

#rside h6 {
  text-align: center;
  font-size: 1.1rem;
  margin: 4px auto;
}

#rside ol {
  width: 100%;
  font-size: 0.9rem;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

#rside ol ol li {
  font-size: 0.8rem;
  padding-left: 8px;
  border: none;
}

#rside ol li {
  border-bottom: 1px solid;
}

/* What's New Styling */
#whatsNew {
  width: 11%;
  float: left;
  position: relative;
  top: 37px;
}

.row.blockDisplay {
  display: block;
}

.row .columns p {
  padding-left: 0px 10%;
}

/* Scale Image Styling */
.scaleImage img {
  max-width: 100%;
  display: block;
}

/* Signature Styling */
.signature {
  margin-left: 60%;
}

/* Software Styling */
.software {
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
}

/* Song List Styling */
#SongLeft {
  width: 50%;
  float: left;
}

#SongRight {
  float: right;
  width: 50%;
}

.songListTitle {
  text-align: center;
  font-size: 80%;
  margin: 1em auto;
  border: 1px solid #333;
}

.songListTitle {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 140%;
  font-weight: bold;
  text-align: center;
  color: #6d6540; /* Updated to a softer shade */
  background: #fff6cc; /* Updated to a softer shade */
  padding: 0.3em 1em;
  margin: 0 2em 1;
  border-top: 7px solid #b2a66b; /* Updated to a softer shade */
  border-bottom: 7px solid #b2a66b; /* Updated to a softer shade */
}
/* Song List Styling (Continued) */
.songlist {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 0.95em;
  margin: 1rem 0px;
  color: #1a1a1a; /* Updated to a softer black */
  font-style: italic;
  line-height: normal;
}

.songlist3 {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1rem;
  margin: 0.5rem 20px;
  color: #1a1a1a; /* Updated to a softer black */
  line-height: normal;
  clear: none;
  width: 98%;
}

.songlist3 td {
  width: 33%;
}

.songlist3 td p {
  font-size: 0.95rem;
  margin: 1px 0px;
  padding-left: 3px;
  font-style: normal;
  text-indent: -3px;
}

.songlist4 {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 0.9rem;
  margin: 2rem 0px;
  color: #1a1a1a; /* Updated to a softer black */
  line-height: normal;
  clear: none;
  width: 100%;
}

.songlist4 td {
  width: 25%;
}

.songlist4 td p {
  font-size: 0.9rem;
  margin: 1px 2px;
  padding-left: 5px;
  font-style: normal;
  text-indent: 0px;
}

.songlist2 {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 0.95rem;
  margin: 1rem 0px;
  border: 1px solid #003c53; /* Updated to match text color */
  color: #1a1a1a; /* Updated to a softer black */
  line-height: normal;
  width: 60%;
}

.songlist2 td {
  width: 40%;
}

.songlist2 td p {
  font-size: 0.9rem;
  margin: 0px;
  padding: 0px;
}

.songlist1 td p {
  font-size: 0.9rem;
  margin: 0px;
  padding: 3px;
}

.songlist1 {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 0.95rem;
  margin: 1rem 0px;
  border: 1px solid #e4e4e4; /* Updated to match text color */
  border-radius: 10px;
  color: #1a1a1a; /* Updated to a softer black */
}

/* Song Title Styling */
.songTitle {
  padding-right: 0em;
  padding-left: 0em;
  font-style: italic;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1.1em;
}

/* Step Styling */
.step {
  margin-top: 2rem;
}

/* Style Styling */
.style {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1.1rem;
  font-weight: bold;
}

/* Style Table Styling */
.styTab {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 0.9rem;
  text-align: center;
  border-collapse: collapse;
  border: 5px inset #b2a66b; /* Updated to a softer shade */
  margin: 1.5rem auto 2rem;
  background: #fff6cc; /* Updated to a softer shade */
}

.styTab caption {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 0.4rem;
  margin-top: 0px;
  color: #003c53; /* Updated to match text color */
}

.styTab caption a {
  text-decoration: none;
  color: #003c53; /* Updated to match text color */
  margin: 0px;
  padding: 5px;
}

.styTab tr td a {
  font-weight: bold;
  padding: 0.5rem 1.5rem;
}

/* Style Table List Styling */
.styTabList {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 0.9rem;
  font-weight: normal;
  color: #003c53; /* Updated to match text color */
  background: #efefff; /* Updated to a softer shade */
  margin: 1.5rem auto;
  border: 5px inset #003c53; /* Updated to match text color */
  line-height: 1.3;
  border-collapse: collapse;
}

.styTabList caption {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
  margin-top: 1rem;
  color: #003c53; /* Updated to match text color */
  padding-bottom: 0.3rem;
}

.styTabList caption a {
  color: #003c53; /* Updated to match text color */
  text-decoration: none;
}

.styTabList td {
  font-size: 0.95rem;
  vertical-align: top;
  font-weight: normal;
  color: #003c53; /* Updated to match text color */
  padding: 5px;
  border: 1px solid #003c53; /* Updated to match text color */
}

.styTabList th {
  font-size: 1rem;
  padding: 5px;
  background: #003c53; /* Updated to match text color */
  color: white;
  font-weight: normal;
  text-align: center;
}

.styTabList th a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.styTabList p {
  margin: 0px 0px 0.5rem 0px;
  padding: 0px;
  font-size: 0.9rem;
}

/* Subcenter Styling */
.subcenter {
  text-align: center;
  font-size: 1rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.2rem;
}

/* Table Bottom Line Styling */
.tdBottomLine {
  border-bottom: 2px solid #003c53; /* Updated to match text color */
  margin-bottom: 1rem;
}

/* Top 40 Styling */
.top40 {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 90%;
  margin: 10px 20px 20px 10px;
  border: 1px solid #003c53; /* Updated to match text color */
  width: 610px;
}

.top40 td {
  padding: 0.2em 0.5em;
}

.top40 th {
  color: white;
  background: #003c53; /* Updated to match text color */
  font-weight: normal;
  text-align: left;
  padding: 0.2em 0.4em;
}
/* Year Table Styling */

/* ===== Responsive Horizontal Menu (Wrapping) ===== */
.yrTab {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: center;
    margin: 1.5rem 0;
    background-color: #f8f9fa;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    list-style: none;
}

.yrTab-item a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #3498db;
    border-radius: 15px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    transition: all 0.3s ease;
}

.yrTab-item a:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}
/* Active (clicked) menu item */
.yrTab-item a.active {
    background: #3498db;
    color: white;
}


@media (max-width: 768px) {
    .yrTab {
        flex-direction: column;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .yrTab {
    gap: 0.25rem;
    padding: 0.25rem;
  }
  
  .yrTab-item a {
    padding: 0.4rem 0.6rem;
  }
}


.zipBox a {
  font-weight: bold;
}

/* Media Queries for Responsive Design */
/* iPads (portrait and landscape) ----------- */
@media (min-width: 900px) and (max-width: 999px) {
  body {
    font-size: 16px;
  }

  .columns {
    width: 24%;
    float: left;
    padding: 0px;
  }

  .columns p {
    padding: 0px 25px;
  }
}



  .Performer {
    font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media (min-width: 667px) and (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .columns {
    width: 25%;
    margin: 6px 0px;
    padding: 0px;
  }

  .columns p {
    padding-left: 0px 14px;
  }

  .column_half.left_half {
    width: 100%;
  }

  .column_half.right_half {
    width: 100%;
  }

  .Performer {
    font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 668px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .columns {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }

  .columns p {
    padding-left: 0px 10px;
  }

  .column_half.left_half {
    width: 100%;
  }

  .column_half.right_half {
    width: 100%;
  }
}

/* Homepage Title Styling */
#titlehome {
  color: white;
  background: linear-gradient(135deg, #000, #4b4b4b);
  /* background: linear-gradient(135deg, #db0085, #0025ff); */
  border-radius: 0 0 8px 8px;
  width: 64%;
  margin-left: 0;
  margin-bottom: 0px;
  padding: 7% 16% 7% 20%;
}

.rowhome {
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: inline-block;
  position: relative;
}

.rowhome p {
  text-align: center;
  font-size: 1rem;
  margin: 3px 0px 0px 14%;
  padding: 0;
  width: 75%;
}

/* .rowhome p a:link */
/* { */
	/* color: orange; */
/* } */

#titlehome h1,
#titlehome h4 {
  text-align: center;
  margin: 0px;
  padding: 0px;
  color: white;
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 3rem;
}

#titlehome h3 {
  color: #003c53; /* Updated to match text color */
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
  font-size: 3rem;
}

#titlehome h1 {
  letter-spacing: 0.3rem;
}

@media (max-width: 768px) {
  #titlehome h1 {
	font-size: 2.3rem;
}}

@media (max-width: 480px) {
  #titlehome h1 {
	font-size: 2.3rem;
}}

#titlehome h4 a:link,
#titlehome h4 a:visited {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  margin: 0px;
  padding: 3px 15px 3px 15px;
  /* border: 1px solid #828282; */
  /* border-radius: 10px; */
}

#titlehome h4 a:hover {
  color: orange;
}

#titlehome span{
	text-decoration: none;
	color: white;
	font-size: 1.2rem;
	margin: 0px;
	padding: 3px 15px 3px 15px;
}

@media (max-width: 768px) {
  #titlehome span {
	font-size: 0.7rem;
}}

@media (max-width: 480px) {
  #titlehome span {
	font-size: 0.7rem;
}}

/* Performer 3 Styling */
#perf3 {
  width: 11%;
  float: right;
  position: relative;
  top: 42px;
}

/* Body, Table, and Th Styling */
body,
td,
th {
  font-family: 'Inter', 'Poppins', sans-serif; /* Updated font stack */
}


    
    #audio-player-wrapper {
        width: 350px;
        top: 20px;
        height: fit-content;
    }
    
    
    /* Mobile layout */
    @media (max-width: 768px) {
        #mainContent {
            flex-direction: column;
        }
        
        #audio-player-wrapper {
            width: 100%;
            position: static;
            margin: 20px 0;
        }
        
        .profile-img-container {
            float: none;
            margin: 0 auto 20px;
            display: block;
            text-align: center;
        }
    }
	

    
    /* Clear floats */
    .clear-section {
        clear: both;
    }
	
	
	
	
	