
body {
  background-color: #121212;
  color: #fff;
  margin: 0;
}

textarea {
  background: #1f1f1f;
  color: #fff;
}


.editable-result {
  width: 100%;
  height: 200px;
  background: #1f1f1f;
  color: #fff;
  border: 1px solid #555;
  border-radius: 5px;
  padding: 10px;
  margin-top: 5px;
  resize: vertical;
}


.header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#stopMessage {
  color: #f1c40f;
  font-style: italic;
  margin-top: 10px;
  display: none;
}


.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  animation: marquee 90s linear infinite; 
}

@keyframes marquee {
  0%   { transform: translateX(50vw); }   
  100% { transform: translateX(-100%); }   
}


.admin-card {
  background: #1e1e1e;
  border: 1px solid #333;
  padding: 1rem;
}
.admin-list .list-group-item {
  background: #2b2b2b;
  color: #fff;
  border: none;
}
.nav-tabs .nav-link { color: #fff; }
.nav-tabs .nav-link.active {
  background: #0d6efd;
  color: #fff;
}


.form-box {
  max-width: 450px;
  margin: 80px auto;
  background: #1f1f1f;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
}


.terms-box,
.terms-of-use {
  background: #1f1f1f;
  border: 1px solid #555;
  border-radius: 5px;
  padding: 15px;
}
.terms-box { max-height: 160px; overflow-y: auto; }


.divider { border-color: #444; }


.maintenance-banner { margin-top: 10px; }


.box {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #333;
}
.form-note {
  font-size: 0.9em;
  color: #e7eb08;
}


.form-control {
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
}
.btn-primary {
  background: #f39c12;
  border: none;
}
.btn-primary:hover {
  background: #e67e22;
}

.video-wrapper {
  position: relative;
  padding-bottom: 177.77%; 
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
iframe {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.text-yellow {
  color: #f1c40f; 
}

.text-red {
  color: #e74c3c; 
}