html,body,h1,h2,h3,h4,h5 {
  font-family: "Raleway", sans-serif;
  width: 100%;
  height: 100%;
}

.qtr{
  border-radius: 15px;
}

.float_form{
  padding:20px;
  width: 15%;
  min-width: 250px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 20px 48px rgba(0, 0, 0, 0.4);
  display: block;
  margin: auto;
}


.loginImg {
  width: fit-content;
  height: fit-content;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.itm{
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.gsi_button_div{
  width: fit-content;
  height: fit-content;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.g_id_signin {
  height: 42px;
}

#map {
    height: 400px; /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}

#popup {
      position: absolute;
      background-color: white;
      border: 1px solid black;
      padding: 10px;
      display: none; /* Initially hidden */
      z-index: 10;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }


.w3-quarter{
  cursor: pointer;
}

.w3-quarter:hover {    
  transform: scale(1.05); /* Zoom in effect */
}


.dc_nav{
  cursor: pointer;
}

.dc_nav:hover {    
  transform: scale(1.05); /* Zoom in effect */
}




/**************************************************************    Ticker      **************************************************************/
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.ticker-left {
  flex: 1;
  min-width: 0;
}

.container {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  color: #fff;
  background: #111;
  padding: 0 1rem;
  height: 2rem;
  line-height: 2rem;
}

/* --- Inline control row --- */
.ticker-controls {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  color: #ccc;
  position: relative;
  margin-top:5px;
}

/* Buttons */
.feed-btn,
#speedBtn {
  background: #222;
  border: 1px solid #444;
  color: #ccc;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 3px;
}

.feed-btn.active {
  background: #2d7a2d;
  color: #fff;
  font-weight: bold;
}

.feed-btn:hover,
#speedBtn:hover {
  background: #2d7a2d;
  color: #fff;
}

/* Gear + vertical slider */
.speed-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#speedControlContainer {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  background: #111;
  border: 1px solid #2d7a2d;
  border-radius: 5px;
  height: 120px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

#speedControl {
  writing-mode: bt-lr; /* Firefox */
  /*-webkit-appearance: slider-vertical; /* Chrome */
  height: 100px;
  accent-color: #2d7a2d;
}

/* --- Ticker --- */
.news-ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 2rem;
  line-height: 2rem;
  background: #111;
  border: 2px solid #132b13;
  overflow: hidden;
  flex: 1;
}

.news-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollTicker 100s linear infinite;
}

.news-item {
  display: inline-block;
  margin-right: 4rem;
  color: #ccc;
  text-decoration: none;
}

.news-item:hover {
  color: #2d7a2d;
}

.dc_buttons{
    visibility: collapse;
    display: none;
  }
  .body_column{
    margin-left:300px;
  }

@keyframes scrollTicker {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Responsive: hide ticker on small screens */
@media (max-width: 600px) {
  .ticker-left {
    display: none;
  }
  .header-flex {
    justify-content: flex-end;
  }
 .float_form{
  box-shadow: none;
 }
  .dc_buttons{
    visibility: visible;
    display: block;
  }
  .body_column{
    margin-left:auto;
  }
}

