body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}
header {
    background: #cd993f;
    color: #fff;
    padding: 1rem;
    text-align: center;
}
main {
    padding: 1rem;
}
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    padding: 1rem;
}
.info {
    height: auto;
    /*width: 100%;*/
    width: auto;
    color: #fff;
    text-shadow: 1px 1px #000;
    text-align: center;
    /*padding-bottom: 10px;*/
    text-wrap: nowrap;
    animation: rightToLeft 8s linear infinite;
}
.infoBlack {
    height: auto;
    width: 100%;
    color: #000;
    text-align: center;
}
.image {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0px;
}
.image2 {
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin: 0px;
}
.weathericon {
    border-radius: 4px;
    width: 40px;
    height: 40px;
    vertical-align: top;
    margin: 0px;
    float: right;
}
.btn2 {
    background: #fff;
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 2px;
}
.btn {
    width: 42px;
    height: 42px;
    padding: 0;
}
button {
    background: #daa345;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    height: 42px;
    width: 100%;
}
button:hover {
    background: #cd993f;
}
span {
    text-align: center;
    margin-right: 0rem;
    margin-left: 0.5rem;
}
.cardheader {
    height: auto;
    text-shadow: 0.5px 0.5px #fff;
    /*padding-bottom: 10px;*/
}
.status {
    display: flex;
    /*background: #a4a3a2;*/
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.0rem;
    font-size: 1rem;
    width: auto;
    opacity: 1.0;
    overflow-x: hidden;
}
.volume-meter {
    width: calc(100% - 106px);
    height: 20px;
    border-radius: 4px;
    background: #ddd;
    opacity: 0.6;
}
.right {
    float: right;
}
.status-text {
    display: inline-block;
    margin-right: 1rem;
}
.player, .volume-controls, .roller {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.key {
    font-weight: normal;
    font-size: 14px;
    float: left;
}
.value {
    font-weight: bold;
    font-size: 14px;
    float: right;
}
dl {
    margin-block-start: 0rem;
    margin-block-end: 0rem;
}
dt {
    font-size: 14px;
}
.play-sources {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.sources {
    width: calc(100% - 50px);
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}
.playlist {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}
.backgroundImage {
    background-image: url('../images/empty.jpg');
    background-size: cover;
    background-position: center;    
}
@keyframes rightToLeft {
  0% {
    transform: translateX(300px);
  }
  100% {
    transform: translateX(-300px);
  }
}