.songlistContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1200px;
    height: 500px;
    margin: 0 auto;
    gap: 20px;
    padding: 10px;
}

.songlist {
    width: 800px;
    height: 100%;
    border: 2px solid yellow;
    border-radius: 5px;
    overflow-y: auto;
    background-color: #AA6611;
}

.songlistOptions {
    width: 400px;
    height: 100%;
    border: 2px solid #FF9900;
    border-radius: 5px;
    background-color: #3A3B77;
}
.ListTxt{
    font-family: Roboto;
    color: yellow;
    font-size: 20px;
    word-spacing: normal;
    padding: 20px;
}
.release{
    background-color: #FF9900;
}
.releaseTitle{
    font-family: Roboto;
    color: black;
    font-size: 22px;
    word-spacing: normal;
    padding: 4px;
    text-align: left;
    padding-left: 40px;
}
.releaseType{
    font-family: Roboto;
    color: #994400;
    font-size: 14px;
    word-spacing: normal;
    padding: 5px;
}
.releaseDate{
    font-family: Roboto;
    color: #AA5500;
    font-size: 12px;
    word-spacing: normal;
    padding: 5px;
}

/* ########################################################################## */

.track {
    display: flex;
    align-items: center;
    padding: 0px;
    border-bottom: 1px solid #333;
    color: black;
    overflow: hidden;
}
.trackInfoText{
    font-family: Roboto;
    font-size: 20px;
}
.trackNumber {
    width: 30px;
    text-align: left;
    margin-right: 0px;
    color: black;
    background-color: #FFAA00;
    flex-shrink: 0;
    padding-left: 5px;
}
.trackTitle {
    flex-grow: 1;
    color: black;
    background-color: yellow;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 5px;
}
.trackBPM {
    width: 160px;
    text-align: center;
    margin-left: 0px;
    color: black;
    background-color: #FFAA00;
    flex-shrink: 0;
}
.trackKey {
    width: 160px;
    text-align: center;
    margin-left: 0px;
    color: black;
    background-color: yellow;
    flex-shrink: 0;
}

/* ------------------------------------------------------------- */
.songlistControls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px auto;
    width: 1000px;
    font-family: Roboto;
    color: black;
}
.sortButtons button {
    width: 100px;
    margin-right: 0px;
    padding: 6px 0px;
    background-color: yellow;
    border: none;
    border-radius: 4px;
    cursor:url(../../img/MainStuff/cursorPoint.png), auto;
    font-weight: bold;
    transition: 0.1s;
}
.filterChecks label {
    margin-right: 15px;
    cursor:url(../../img/MainStuff/cursorPoint.png), auto;
}

/* Add styles to handle active state */
.sortButtons button:hover {
    transform: scale(1.05);
}

.sortButtons button.active {
    background-color: #FFAA00; /* Highlight color */
    border-color: #994400;
    font-weight: bold;
}
  
.sortButtons button .arrow {
    display: inline-block;
}
  
.sortButtons button .hidden {
    display: none; /* Hide arrows when inactive */
}
  
  /* Style for the sort buttons */
.sortButtons button {
    position: relative; /* For positioning the arrow */
}
  
.sortButtons button .arrow {
    position: absolute;
    right: 10px; /* Adjust as needed for arrow positioning */
}
  
.sortButtons button#sortKey .arrow {
    display: none; /* No arrow for the "key" button */
}
  