body{
    background-color: #2c2c2c;
    color: #e0e0e0;
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
}
.button{
    background-color: #008080;
    color: #e0e0e0;
    border-radius: 5px;
    font-style: italic;
    border: 3px solid #2c2c2c;
    font-size: 16px;
}
.button:hover {
    background-color: #e0e0e0;
    color: #008080;
    border-radius: 5px;
    font-style: italic;
    border: 3px solid #008080;
    font-size: 16px;
}
.container{
  height: 50px;
  position: relative;
  background-color: #5f9ea0;
  color: #e0e0e0;
  font: bold italic 20px serif;
  border-radius: 15px;
  border: 5px solid #cccccc;
}
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
audio{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.song-item {
    margin: 15px auto;
    padding: 12px;
    background-color: rgba(0, 128, 128, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    max-width: 400px;
    border: 2px solid transparent;
}
.song-item:hover {
    background-color: rgba(0, 128, 128, 0.3);
    transform: translateY(-2px);
}
.song-item.now-playing {
    background-color: rgba(0, 128, 128, 0.5);
    border: 2px solid #cccccc;
    box-shadow: 0 0 10px rgba(204, 204, 204, 0.6);
}
.song-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #e0e0e0;
    word-wrap: break-word;
    padding: 5px 8px;
    background-color: rgba(44, 44, 44, 0.5);
    border-radius: 4px;
}
h1 {
    animation: fadeInUp 1s ease-out;
}
.t1{
    background-color: #008080;
    color: #e0e0e0;
    font: bold italic 20px serif;
    border-radius: 15px;
    border: 5px solid #2c2c2c;
}
.t2{
    background-color: #e0e0e0;
    color: #2c2c2c;
    font: bold italic 20px serif;
    border-radius: 15px;
    border: 5px solid #5f9ea0;
}
.topnav {
  overflow: hidden;
  position: relative;
  z-index: 100; 
}
.topnav #myLinks {
  display: none;  
  background-color: #2c2c2c;
  float: right;
  z-index: 101; 
  border-radius: 15px;
  border: #cccccc solid 5px;
}
.topnav a {
  color: #e0e0e0;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  border-radius: 15px;
}
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.active {
  background-color: #5f9ea0;
  color: #e0e0e0;
    border: #cccccc solid 5px;
}
img{
    border-radius: 15px;
    width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.now-playing-fixed {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: rgba(44, 44, 44, 0.98);
    border: 3px solid #cccccc;
    border-radius: 12px;
    padding: 20px;
    max-width: 280px;
    font-weight: bold;
    font-size: 16px;
    color: #e0e0e0;
    z-index: 99;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.5s ease-out;
    word-wrap: break-word;
}
#nowPlayingTitle {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #20b2aa;
    font-style: italic;
}
.now-playing-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 250, 205, 0.3);
}
.control-btn {
    background-color: #008080;
    border: 2px solid #cccccc;
    color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.control-btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.control-btn:active {
    transform: scale(0.95);
}
.control-btn.active {
    box-shadow: 0 0 10px rgba(204, 204, 204, 0.8);
    border-color: #20b2aa;
}
#searchBox {
    background-color: #f0f0f0;
    color: #2c2c2c;
    border: 2px solid #008080;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
#searchBox:focus {
    outline: none;
    border-color: #5f9ea0;
    background-color: #e0e0e0;
    box-shadow: 0 0 12px rgba(0, 128, 128, 0.6);
}
#searchBox::placeholder {
    color: #5f9ea0;
}
