html, body {
    margin: 0;
    height: 80svh;
}

body {    
  display: flex;
  justify-content: center;   /* horizontal */ 
  background-color: white;
  margin-top: 5px;
}

#programPanel {   
    display:grid;    
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 8fr 0.5fr; 
    height: 75svh;
    width:100vw; 
    max-width: 1400px;
    max-height: 700px;   
    background-color: rgb(163, 189, 242);
    gap: 4px;
    /*overflow:hidden;*/
   
}

#actionBar {    
    display: flex; 
    flex-direction: row; 
    align-content:space-between; 
    align-items: center;   
    width: 100%;    
    background-color: cornflowerblue;
    border: 4px solid black;   
    border-radius: 8px; 
    gap: 14px;  
}

#notes-image {
    margin-left: 15px;
}

.select-container {
    display: flex;
    flex-direction: column;   
    width: 160px;
    margin-bottom: 10px;
}

.select-container label {
    margin-bottom: 0px;
    font-size: 0.8rem;
    color: white;
}

#songListsSelect {
    width: 140px;
    font-size: 1rem;
    padding: 4px;
    border-radius: 6px;
}

#songNumberLbl {
    color: yellow;
    font-size: 1.2rem;
    font-weight: bold;
}

#songNumber {
    width: 50px;
    height: 35px;
    color: red;
    border: 3px solid blue;
    border-radius: 6px;
    text-align: center;
}

#musicPanel {
    display: grid;
    grid-template-columns: 1fr 4fr;
    width: 100%;    
    background-color: rgb(163, 189, 242);   
    gap: 10px;  
}

#songListPanel {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid blue;   
    border-radius: 10px; 
    background-color: rgb(163, 189, 242);
    margin-left: 5px;
}

.listBox {
    width: 225px;
    height: 430px;
    border: 1px;
    overflow-y: auto;
    background: white;
    font-family: sans-serif;
}

.listItem {
    padding-left: 3px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listItem:hover {
    background-color: #ddd;
}

.listItem.selected {
    background-color: #3399ff;
    color: white;
}

#sortByLetter {
    text-align: center;
}

#letter-search {
    width: 30px;
    height: 25px;
    color: red;
    text-align: center;
    margin-bottom: 8px;
}

#printButton {
    width: 50px;
    height: 40px;
}

#newSongBtn {
    width: 42px;
    height: 48px;
}

#musicDisplay {
    display: flex;
    background-color:white;
    border: 3px solid blue;   
    border-radius: 10px; 
    margin-right: 5px;
}

#fileContents {
   width: 100%;
   height: 100%;
   resize: none;
   box-sizing: border-box;
}

#bottomBar {
    display: flex; 
    flex-direction: row;
    justify-content: space-between;  
    width: 100%;    
    background-color: cornflowerblue;
    border-color: black;
    border-radius: 8px;
    border: 4px solid black;   
   
}

#actionBar, #musicPanel, #bottomBar {
    justify-self: center;
}

#title {
    font-size: 2.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:white;
    text-justify: center;
    margin-left: 10px;
}

#sortByLetter {
    color: blue;
    font-size: 1.2rem;
    margin-top: 15px;
}

#displaySong {
     border-radius: 8px;
     cursor: pointer;
     background-color: rgb(0, 110, 255);     
     text-align: center;        
     color: white; 
     font-weight: bold; 
     width: 150px;
     height: 34px;
     margin-top: 20px;    
}

#exitProgram {
     border-radius: 8px;
     cursor: pointer;
     background-color: rgb(0, 110, 255);     
     text-align: center;        
     color: white; 
     font-weight: bold;
     font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 
     font-size: 1.2rem;
     width: 130px;
     height: 40px;
     margin-left: 15px;
}

#songNowPlayingLbl {
    margin-left: 20px;
    color:aliceblue;

}

#songNowPlayingTitle {
  width: 300px;
  color: black;
  text-align: center;
  margin-left: 6px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#acknowledgement {
    margin-right: 20px;
    color: aliceblue;
}