/* reset styles */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

* {
    color: inherit;
    margin: 0;
}

body {
    font-family: "Space Grotesk", sans-serif;
    min-width: 1500px;
    margin: 0;
    /* background-color: rgb(190, 2, 2); */
}



ul {
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

hr {
    border: 0;
    border-top: 1px dotted #efefef;
}

img {
    max-width: 100%;
}

h1 {
    color: #1D1D1D;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

a {
    color: rgb(239, 239, 239);
}

button {
    color: white;
    border: 0;
    background: none;
    border: 1px solid #1D1D1D;
    border-radius: 0px;
    padding: 0.2rem;
    height: 30px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: lighter;
}

.error {
    color: #d32752;
    border-color: #d32752;
    border-style: solid;
    margin: 0.5rem;
    padding: 0.2rem;
    border-radius: 0px;
    border-width: 1px;
}

.notification {
    color: rgb(239, 239, 239);
    border-color: rgb(239, 239, 239);
    border-style: solid;
    margin: 0.5rem;
    padding: 0.2rem;
    border-radius: 0px;
    border-width: 1px;
}

.card {
    display: block;
    padding: 0.2rem;
    border: 1px solid #ddd;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}

.card .card-title {
    font-size: 1rem;
    padding-bottom: 0.2rem;
    font-weight: bold;
}

.card .card-body {
    font-size: 1rem;
}

.card .card-body a {
    text-decoration: underline;
}

.header {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    height: 65px;
    width: 100%;
    border-bottom: 1px solid #1D1D1D;
}

.header ul {
    float: right;
    margin-right: 60px;
    white-space: nowrap;
}

.header ul li {
    display: inline-block;
    line-height: 65px;
    margin: 0 8px;
    vertical-align: top;
}

/* Consistent navigation item spacing */
.header ul li a[data-translate] {
    display: inline-block;
    min-width: 80px;
    text-align: center;
    margin: 0 10px;
}

#hometitle {
    margin-right: 800px;
    margin-left: 0;
    min-width: auto;
    text-align: left;
}


.header ul li a {
    position: relative;
    color: #1D1D1D;
    font-size: 14px;
    text-decoration: none;
    font-weight: 300;
}

.header ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    /* Position at the middle of the text vertically */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1D1D1D;
    transform: translateY(-50%) scaleX(0);
    /* Initial state: no width */
    transform-origin: bottom left;
    transition: transform 0.3s ease;
    /* Transition effect */
}

.header ul li a:hover::after {
    transform: translateY(-50%) scaleX(1);
    /* Final state: full width */
}

/* Language selector styles */
.language-selector {
    position: relative;
    display: inline-block;
    line-height: 65px;
    margin: 0 8px;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #1D1D1D;
    z-index: 1000;
    min-width: 150px;
    margin-top: -2px;
}

.language-dropdown a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #1D1D1D;
    font-size: 12px;
    transition: background-color 0.3s ease;
    border-bottom: 1px dotted #ddd;
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    background-color: rgb(239, 239, 239);
}

.language-selector:hover .language-dropdown,
.language-dropdown:hover {
    display: block;
}

.worklist {
    float: left;
    height: calc(100vh - 65px);
    width: 29%;
    align-items: left;
    margin-left: 32px;
    border-right-style: solid;
    border-width: 1px;
    border-right-color: #1D1D1D;
    overflow-y: auto;
    /* Enable vertical scrolling */
    padding-right: 10px;
    /* Add some padding for better readability */
    scrollbar-width: thin;
    /* For modern browsers, makes scrollbar thinner */
    scrollbar-color: #1D1D1D transparent;
    /* Custom scrollbar color */
}

.date {
    margin-top: 0%;
    font-size: 10px;
    height: 0px;
    background-color: pink;
}

.date p {
    position: absolute;
    margin-top: 39%;
    margin-left: 70%;
    font-style: italic;
}

.instrumentation {
    margin-top: 0%;
    font-size: 10px;
    height: 0px;
    background-color: pink;
}

.instrumentation p {
    position: absolute;
    margin-top: 39%;
    margin-left: 91%;
    font-weight: bolder;
    font-size: 12px;
}

.programnotes {
    float: left;
    height: 18%;
    width: 29%;
    align-items: left;
    margin-top: 43%;
    margin-left: 38%;
    overflow-y: auto;
}

.worklist::-webkit-scrollbar {
    width: 8px;
    /* Scrollbar width */
}

.worklist::-webkit-scrollbar-thumb {
    background-color: #1D1D1D;
    /* Scrollbar color */
    border-radius: 4px;
    /* Rounded scrollbar */
}

.worklist h2 {
    margin-top: 80px;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #1D1D1D;
    margin-bottom: 80px;
    line-height: 1;
    cursor: pointer;
    text-transform: lowercase;
}





.a {
    stroke: black;
    stroke-width: 2;
    cursor: pointer;
    fill-opacity: 100%;
    fill: white;
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: black;
    /* Optional: Red color for the line */
    text-decoration-thickness: 1px;
    /* Optional: Thickness for better visibility */
}

/* Default state with no strikethrough */
.no-strikethrough {
    text-decoration: none;
}

.middlesection {
    position: absolute;
    margin-left: 31.9%;
    width: 1030px;
    height: 94.2%;
}

.mutebutton {
    height: 100%px;
    width: 50px;
}

.mutebutton img {
    height: 27px;
    margin-left: 9px;
    margin-top: 12px;
    align-self: auto;
    animation: fadeInOut 4s infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.filtertags {
    width: 100%;
    height: 50px;
    display: flex;
}

.tagbuttons {
    width: 617px;
    height: 50px;
    margin-left: 362px;
}

.tagbuttons button {
    z-index: 100;
    margin-top: 12px;
    margin-left: 3px;
    background-color: #1D1D1D;
    color: white;
    border-radius: 0px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    /* Ensure pointer cursor is set */
}

.sheetmusicsvg svg {
    margin-left: 100px;
    width: 900px;
    height: auto;
    /* Preserve aspect ratio */
    max-width: 100%;
    /* Prevent overflow */
}