.scnt-ticker {
  display: flex;                 
  align-items: center;           
  background: #fff;              
  border: 2px solid #111;        
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
  white-space: nowrap;
  color:red;
}

.scnt-label {
  background: #ff0000;           
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  border-right: 2px solid #111;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.scnt-content {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
	font-family:mukta;
}

.scnt-content ul {
  display: inline-flex;          
  padding: 0;
  margin: 0;
  animation: ticker 20s linear infinite;
  animation-play-state: running;   /* ✅ default running */
}

.scnt-content:hover ul {          /* ✅ pause on hover */
  animation-play-state: paused;
}

.scnt-content li {
  display: inline-flex;          
  align-items: center;
  margin-right: 40px;
  list-style: none;
  color:red;
}

.scnt-content a {
  color: red;
  text-decoration: none;
  font-weight: 700;
}

.scnt-content input[type="checkbox"] {
  margin-right: 6px;
  color:red;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ✅ Custom Blue Checkbox */
.scnt-content input[type="checkbox"] {
  appearance: none;           
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #007bff;  
  border-radius: 3px;
  background: #007bff;  
  position: relative;
  margin-right: 6px;
  top:3px;
}

.scnt-content input[type="checkbox"]::after {
  content: "✔";
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: -1px;
  left: 2px;
}
