
  /* Center alignment for section headings and content */
.section-block h2 {
    text-align: center;
}

/* Optional: center content inside the rating and related sections */
.rating-section,
.related-tabs {
    text-align: center;
}

/* Optional: center the list items in Similar Piano Chords */
.related-tabs ul {
    display: inline-block;
    text-align: left; /* keep links aligned within centered block */
    margin: 0 auto;
    padding: 0;
    list-style-position: inside;
font-size:14px;
}
  .title-rating {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
    }

    .tab-title {

        flex: 1;
        margin-right: 10px;
        white-space: nowrap;
        overflow: hidden;
  
    }

    .stars {
        white-space: nowrap;
        color: gold;
        font-size: 1rem;
    }
.rating-stars .star {
    cursor: pointer;
}

.more-tabs {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #ffffff; /* Light background to match the overall aesthetic */
    border-radius: 10px; /* Rounded corners for a smooth look */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.more-tabs .more-tabs-btn {
    background-color: #3498db; /* Using the primary blue color from the navbar */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Ensures no underline */
    margin-top: 10px;
    display: inline-block; /* Ensures the button aligns properly */
}

.more-tabs .more-tabs-btn:hover {
    background-color: #2980b9; /* Darker blue shade on hover */
    text-decoration: none;
}

.more-tabs .more-tabs-btn:focus {
    outline: 2px solid #f39c12; /* Adds a golden outline when focused */
}


.tab-item {
    width: 100%;
    display: block;
    clear: both;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}
.two-column-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.column {
    flex: 1;
    min-width: 0;
}

.recently-added-column {
    order: 1;
}

.top-rated-column {
    order: 2;
}

.share-container {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom:20px;
    padding-bottom:20px;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}
.share-container h2 {
    margin-bottom: 15px;
}
.share-buttons {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap; /* Allows wrapping for mobile */
    justify-content: center; /* Centers the buttons on mobile */
}
.share-buttons li {
    display: inline-block;
}
.share-btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 14px;
    font-weight: bold;
}
.share-btn.facebook { background: #3b5998; color: #fff; }
.share-btn.facebook:hover { background: #2d4373; text-decoration: none; }
.share-btn.twitter { background: #1da1f2; color: #fff; }
.share-btn.twitter:hover { background: #0d95e8; text-decoration: none; }
.share-btn.email { background: #7f7f7f; color: #fff; }
.share-btn.email:hover { background: #5f5f5f; text-decoration: none; }
.share-btn.linkedin { background: #0077b5; color: #fff; }
.share-btn.linkedin:hover { background: #005983; text-decoration: none; }
.share-btn.bookmark { background: #e67e22; color: #fff; }
.share-btn.bookmark:hover { background: #d35400; text-decoration:none; }

.intro-text {
    background: #f0f8ff;
    border: 1px solid #bbe1fa;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.intro-text h1 {
    margin-top: 0;
    color: #1d3557;
    text-align: center;
}

/* Basic styling for error messages */
#error-display {
    background-color: #fdd;
    border: 1px solid #f99;
    color: #900;
    padding: 10px;
    margin: 10px 0;
    display: <?php echo $errorMsg ? 'block' : 'none'; ?>;
}
/* Mute indicator styling */
.mute-indicator {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-weight: bold;
}
/* Control button styling */
#control-buttons {
    margin-top: 20px;
}
.control-btn {
    padding: 8px 12px;
    margin-right: 5px;
    cursor: pointer;
}
.control-btn.active {
    background-color: #007BFF;
    color: #fff;
}
.speed-controls {
    margin-top: 10px;
}
.guitar-container {
    text-align: center;
}
.center {
    text-align: center;
}
.print-button.no-print.btn:hover {
    text-decoration: none;
}
/* Control Buttons Container Styling */
#control-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #2c3e50 !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1) !important;
    margin-top: 20px !important;
    border: 1px solid #ddd !important;
    flex-wrap: wrap !important;
}

/* General Button Styling for Media Controls */
#play-btn, #pause-btn, #repeat-btn, #mute-btn, #control-buttons .speed-controls button {
    width: 50px !important;
    height: 50px !important;
    margin: 5px !important;
    border: none !important;
    border-radius: 50% !important;
    background-color: #7f8c8d !important;  /* Default gray background */
    cursor: pointer !important;
    position: relative !important;
    outline: none !important;
    transition: background-color 0.3s ease !important;
    padding: 0 !important;
    color: transparent !important;
    text-shadow: none !important;
    aspect-ratio: 1 !important;
    font-size: 14px !important; /* Consistent font size for all button content */
}

/* Hover State for All Buttons */
#play-btn:hover, #pause-btn:hover, #repeat-btn:hover, #mute-btn:hover, #control-buttons .speed-controls button:hover {
    background-color: #95a5a6 !important;  /* Lighter gray for hover */
}

/* Active States */
#play-btn.active, #pause-btn.active {
    background-color: #2ecc71 !important; /* Green active state for play and pause */
}

#repeat-btn.active {
    background-color: #9b59b6 !important;  /* Purple active state for repeat */
}

#mute-btn.active {
    background-color: #c0392b !important;  /* Red active state for mute */
}

#control-buttons .speed-controls button.active {
    background-color: #2ecc71 !important; /* Green active state for speed controls */
}

/* Play Button Icon */
#play-btn::before {
    content: "\25B6" !important;
    color: #fff !important;
    font-size: 24px !important; /* Icon size adjusted for consistency */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Pause Button Icon */
#pause-btn::before, #pause-btn::after {
    content: "" !important;
    background-color: #fff !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 24px !important; /* Icon size adjusted for consistency */
    border-radius: 2px !important;
}
#pause-btn::before {
    left: calc(50% - 9px) !important;
}
#pause-btn::after {
    left: calc(50% + 3px) !important;
}

/* Repeat Button Icon */
#repeat-btn::before {
    content: "" !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7 7h9l-3.5-3.5L14 2l5 5-5 5-1.5-1.5L16 7H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h1v-2H7c-1.1 0-2-.9-2-2s.9-2 2-2z'/%3E%3Cpath fill='white' d='M17 17H8l3.5 3.5L10 22l-5-5 5-5 1.5 1.5L8 17h9c2.21 0 4-1.79 4-4s-1.79-4-4-4h-1v2h1c1.1 0 2 .9 2 2s-.9 2-2 2z'/%3E%3C/svg%3E") !important;
    background-size: 24px 24px !important;
    width: 24px !important;
    height: 24px !important; /* Icon size adjusted for consistency */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Mute Button Icon */
#mute-btn::before {
    content: "" !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M5 9v6h4l5 5V4l-5 5H5z'/%3E%3Cline x1='19' y1='5' x2='5' y2='19' stroke='white' stroke-width='2'/%3E%3C/svg%3E") !important;
    background-size: 24px 24px !important;
    width: 24px !important;
    height: 24px !important; /* Icon size adjusted for consistency */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* When Mute Button is Active */
#mute-btn.active::before {
    content: "" !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M5 9v6h4l5 5V4l-5 5H5z'/%3E%3Cline x1='19' y1='5' x2='5' y2='19' stroke='white' stroke-width='2'/%3E%3C/svg%3E") !important;
    background-size: 24px 24px !important;
}

/* Speed Controls Styling */
#control-buttons .speed-controls {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    flex-wrap: wrap !important;
}

#control-buttons .speed-controls button {
    width: 50px !important;
    height: 50px !important;
    background-color: #7f8c8d !important; /* Default gray background */
    color: transparent !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    position: relative !important;
    outline: none !important;
    transition: background-color 0.3s ease !important;
    padding: 0 !important;
    font-size: 14px !important; /* Consistent font size for speed controls */
}

/* Speed Control Text (Dynamic Text for Different Speeds) */
#control-buttons .speed-controls button::before {
    content: attr(data-speed) "x" !important;
    color: #fff !important;
    font-size: 14px !important;  /* Ensuring consistency in text size */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Speed Control Button Hover */
#control-buttons .speed-controls button:hover {
    background-color: #95a5a6 !important;  /* Lighter gray for hover */
}

/* Speed Control Active Button State */
#control-buttons .speed-controls button.active {
    background-color: #2ecc71 !important; /* Consistent Green for Active Button */
}

/* Specific Speed Labels */
#control-buttons .speed-controls button[data-speed="0.25"]::before {
    content: "0.25x" !important;
}

#control-buttons .speed-controls button[data-speed="0.67"]::before {
    content: "0.67x" !important;
}

#control-buttons .speed-controls button[data-speed="1"]::before {
    content: "1x" !important;
}

#control-buttons .speed-controls button[data-speed="1.33"]::before {
    content: "1.33x" !important;
}

/* Global Resets */
* {
    box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #F5F5F5;
    margin: 0;
    padding: 20px;
    color: #444;
    line-height: 1.6;
}

/* Logo and Navbar */
.logo-container {
    background-color: #F5F5F5;
 padding: 15px 20px 0 20px;
        text-align: center;
    margin: 20px 0;
}
.logo {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.navbar {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    position: relative;
      background-color: #3498db;
    border-radius: 5px;
}
.navbar ul {
    list-style: none;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    background-color: #3498db;
}
.navbar li {
    margin: 0;
}
.navbar a {
    text-decoration: none;
    padding: 10px 14px;
    color: #fff;
    transition: color 0.3s, background 0.3s;
}
.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    text-decoration: none;
}

/* Container and Grid */
.container {
    max-width: calc(1000px - 20px);
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}
.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content {
    text-align: left;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.details-grid .detail-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Tab Content */
.tab-content {
    white-space: pre-wrap;
    word-wrap: break-word;
    tab-size: 4;
    margin: 0;
    display: block;
    text-align: left;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.tab-content.expanded {
    max-height: none;
}

/* Buttons: Expand and Print */
.expand-button,
.print-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.expand-button:hover,
.print-button:hover {
    background-color: #2980b9;
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
}

/* Main Detail Section */
main {
    max-width: 1000px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 2em;
    color: #2c3e50;
    margin: 0 0 15px 0;
}
.detail-item {
    margin-bottom: 15px;
}
.detail-item strong {
    font-weight: 600;
}
.content {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.8;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Piano Styles */
.piano-container {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    overflow: hidden;
}
#keyboard {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 200px;
    margin: 20px auto;
    user-select: none;
    font-size: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.white-key {
    display: inline-block;
    width: 60px;
    height: 200px;
    background: white;
    border: 1px solid #000;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    font-size: 16px;
}
.white-key .key-label {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2em;
    color: #333;
}
/* Black key styles with added label text on top */
.black-key {
    position: absolute;
    width: 40px;
    height: 120px;
    background: black;
    top: 0;
    z-index: 2;
    border-radius: 0 0 5px 5px;
    line-height: 120px;  /* used for centering if no label is added */
    font-size: 0.9em;
    text-align: center;
    color: #fff;
    transform: translateX(-50%);
}
/* New rule: Place white text label at the top of black keys */
.black-key .key-label {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.9em;
    color: #FFF; !important;  /* Red text color */
    line-height: normal;
}

.black-key.key-csharp {
    left: 60px;
}
.black-key.key-dsharp {
    left: 120px;
}
.black-key.key-fsharp {
    left: 240px;
}
.black-key.key-gsharp {
    left: 300px;
}
.black-key.key-asharp {
    left: 360px;
}
.black-key.key-csharp2 {
    left: 480px;
}
.black-key.key-dsharp2 {
    left: 540px;
}
.black-key.key-fsharp2 {
    left: 660px;
}
.black-key.key-gsharp2 {
    left: 720px;
}
.black-key.key-asharp2 {
    left: 780px;
}
.active-piano {
    background: #f1c40f;
}
.white-key.active {
    background: #f1c40f !important;
}
.black-key.active {
    background: #ffdb4d !important;
}

/* Headings, Links, and Miscellaneous Styles */
h1,
h2 {
    margin: 0 0 15px 0;
}
h1.section-title {
    font-size: 2em;
    color: #2c3e50;
    margin: 20px 0;
    text-align: center;
}
h2 {
    font-size: 1.5em;
    color: #34495e;
}
a {
    color: #3498db;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.tag-links a {
    margin-right: 10px;
    font-weight: bold;
}

.filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.filter h2 {
    margin-top: 0;
    color: #34495e;
}
.filter label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.filter input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.filter button {
    background: #3498db;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.filter button:hover {
    background: #2980b9;
}

/* CODE 1 STYLES - THESE OVERRIDE CONFLICTING STYLES FROM CODE 2 */
.grid-container {
    width: 800px !important;
    margin: 0 auto !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    display: flex;           /* enables flex layout */
    justify-content: center; /* center horizontally */
    flex-wrap: wrap;         /* wrap on smaller screens */
}

/* Make each .category a fixed width column */
.category {
    flex: 1 1 500px; /* grow/shrink, base width 500px */
    max-width: 600px; /* optional max width */
    box-sizing: border-box;
}

.meta {
    color: #7f8c8d !important;
    font-size: 14px !important;
    margin: 0 !important;
}

/* NEW: Larger stars */
.stars {
    font-size: 24px !important;   /* Adjust this for star size */
    color: #f1c40f;               /* Gold color for stars */
    letter-spacing: 2px;
}

/* Mobile Media Queries */
@media (max-width: 768px) {
  body {
    padding: 0 10px;
  }
  .navbar a {
    font-size: 12px;
  }
  .navbar ul {
    gap: 0px;
  }
  .title-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .title-container h1 {
    font-size: 1.75em;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }
  .print-button {
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .content,
  .tab-content {
    font-size: 1em;
    margin: 0 auto;
    padding: 0 5px;
  }
  .speed-controls button {
    display: block;
    width: 100%;
    margin: 5px 0;
  }
  .expand-button {
    margin-bottom: 10px;
  }
  .piano-container {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  #keyboard {
    margin: 10px auto 0 auto !important;
  }
}

/* Additional styles for #keyboard for landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  #keyboard {
    transform: scale(0.8) !important;
    transform-origin: top left !important;
    width: 100% !important;
    overflow: hidden !important;
  }
}

/* Additional styles for #keyboard */
@media (max-width: 768px) {
  #keyboard {
    max-height: 120px;
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  #keyboard {
    width: 100%;
  }
  .white-key {
    width: calc(100% / 15);
    height: 150px;
    font-size: 16px;
  }
  .black-key {
    width: calc((100% / 15) * 0.6);
    height: 90px;
    line-height: 90px;
  }
  .black-key.key-csharp {
    left: calc((100% / 15) * 1);
  }
  .black-key.key-dsharp {
    left: calc((100% / 15) * 2);
  }
  .black-key.key-fsharp {
    left: calc((100% / 15) * 4);
  }
  .black-key.key-gsharp {
    left: calc((100% / 15) * 5);
  }
  .black-key.key-asharp {
    left: calc((100% / 15) * 6);
  }
  .black-key.key-csharp2 {
    left: calc((100% / 15) * 8);
  }
  .black-key.key-dsharp2 {
    left: calc((100% / 15) * 9);
  }
  .black-key.key-fsharp2 {
    left: calc((100% / 15) * 11);
  }
  .black-key.key-gsharp2 {
    left: calc((100% / 15) * 12);
  }
  .black-key.key-asharp2 {
    left: calc((100% / 15) * 13);
  }
}

@media (max-width: 600px) {
  #keyboard {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .white-key {
    width: calc(100% / 15);
    height: 120px;
    font-size: 12px;
    border: 1px solid #000;
    background: white;
  }
  .black-key {
    width: calc((100% / 15) * 0.6);
    height: 80px;
    position: absolute;
    background: black;
    z-index: 2;
    border-radius: 0 0 5px 5px;
    transform: translateX(-50%);
    line-height: 80px;
  }
  .black-key.key-csharp {
    left: calc((100% / 15) * 1);
  }
  .black-key.key-dsharp {
    left: calc((100% / 15) * 2);
  }
  .black-key.key-fsharp {
    left: calc((100% / 15) * 4);
  }
  .black-key.key-gsharp {
    left: calc((100% / 15) * 5);
  }
  .black-key.key-asharp {
    left: calc((100% / 15) * 6);
  }
  .black-key.key-csharp2 {
    left: calc((100% / 15) * 8);
  }
  .black-key.key-dsharp2 {
    left: calc((100% / 15) * 9);
  }
  .black-key.key-fsharp2 {
    left: calc((100% / 15) * 11);
  }
  .black-key.key-gsharp2 {
    left: calc((100% / 15) * 12);
  }
  .black-key.key-asharp2 {
    left: calc((100% / 15) * 13);
  }
  /* Adjust black key label for mobile */
  .black-key .key-label {
    font-size: 0.8em;
  }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {
  #keyboard {
    height: 150px;
  }
  .white-key {
    height: 150px;
  }
  .black-key {
    height: 80px;
    line-height: 80px;
  }
}

@media (max-width: 480px) {
  .title-container h1 {
    font-size: 1.5em;
  }
  .expand-button,
  .print-button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .title-container h1 {
    font-size: 1.3em;
  }
  .expand-button,
  .print-button {
    padding: 8px;
    font-size: 13px;
  }
  .piano-container {
    padding: 0 5px;
  }
}
   /* Basic Styles for Black Keys */
        .black-key {
            background-color: black !important;
            color: #FFF !important; /* Black keys now display white text */
            position: absolute !important;
            width: 30px !important;
            height: 120px !important;
            z-index: 2 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 14px !important;
            font-weight: bold !important;
        }

        /* Add extra border on top and bottom for white keys */
        .white-key {
            border-top: 1px solid black !important;
            border-bottom: 1px solid black !important;
            display: inline-block; /* Ensure they line up horizontally */
            position: relative;
        }

        /* First white key extra left border */
        .white-key:first-child {
            border-left: 2px solid black !important;
        }

        /* Instead of using :last-child which might not target the last white key correctly,
           a specific class is used to fix the border-right on the last white key */
        .white-key.last-white-key {
            border-right: 2px solid black !important;
        }

        /* Media query to adjust keys on small screens (iPhone portrait mode) */
        @media only screen and (max-device-width: 480px) and (orientation: portrait) {
            .black-key {
                width: 20px !important;
                height: 70px !important;
                font-size: 11px !important;
            }
            /* Lower the labels on the white keys so they don't get cut off by the black keys */
            .white-key {
                position: relative;
            }
            .white-key .key-label {
                position: absolute;
                bottom: 5px;
                width: 100%;
                text-align: center;
                font-size: 14px;
            }
        }
    /* Mobile-specific Styles */
    @media (max-width: 600px) {
        .share-container h2 {
      
        .share-btn {
            padding: 8px 12px; /* Reduced padding for smaller buttons */
            font-size: 12px; /* Smaller text size */
        }
        .share-buttons li {
            flex: 1 0 48%; /* Buttons take up half the width, wrap to the next line */
            margin-bottom: 10px; /* Spacing between buttons */
        }
    }

        /* Media query to adjust keys when the phone is in landscape (horizontal) mode */
        @media only screen and (max-device-width: 480px) and (orientation: landscape) {
            .black-key {
                height: 80px !important;
            }
        }

.description {
text-align:center;
}
.more-tabs {
text-align: center;
}