body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #1C1B1A, #1C1B1A);
  color: #fff;
}

.chart-container {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  color: #333;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.chart-header h1 {
  font-size: 26px;
  font-weight: bold;
  color: #D74C36;
  margin: 0;
}

.chart-header img {
  width: 80px;
}

.chart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chart-item {
  display: grid;
  grid-template-columns: 50px 60px 1fr;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.rank {
  font-size: 20px;
  font-weight: bold;
  color: #D74C36;
  text-align: center;
}

.header-position{
  position: sticky;
  top:0px;
  z-index:100000;
}

.cover {
  width: 55px;
  height: 55px;
  border-radius: 6px;
  overflow: hidden;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details {
  margin-left: 12px;
}

.song {
  font-size: 16px;
  font-weight: bold;
  color: #111;
}

.artist {
  font-size: 14px;
  color: #1C1B1A;
}

.footer {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  background: #F2E7DB;
  color: #1C1B1A;
  padding: 10px;
  border-radius: 10px;
}

.text-success{color:green !important; font-weight: bold; font-size: 25px}
.text-danger{color:red !important; font-weight: bold; font-size: 25px}