html,
body {
height: 100%;
margin: 0;
padding: 0;
}
.container {
display: flex;
width: 100%;
}
.margin-column {
flex: 1;
}
.col-left {
flex: 1;
}
.col-right {
flex: 1;
display: flex;
flex-direction: column;
}
.buttons-container {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.button-row {
display: flex;
justify-content: flex-start; /*allign to the left */
margin-bottom: 10px;
}
.button-row button {
width: 100%;
background-color: orange;
color: black;
margin: 5px;
}
.text-block-row {
flex: 1;
display: flex;
align-items: center;
margin: 5px;
}
.text-block {
flex: 1;
border: 1px solid #ccc;
padding: 10px;
}
.song-list-card {
height: 100%;
display: flex;
flex-direction: column;
}
.song-list {
flex: 1;
overflow-y: auto;
align-items: stretch;
}
.card-title {
color: orange;
}