
/*body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #220398;
  color: #fff;
}*/

.ticker-section {
    background-color: #220398;
  padding: 20px;
  max-width: 100%;
}

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

.controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ticker-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.ticker-card {
  background: #220398;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  min-width: 160px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border:2px solid black;
}

.ticker-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.ticker-header h2{
 
    color:white;
}