/* For WebKit-based browsers (Chrome, Safari) */
/* The following rules are for the scrollbar track */
::-webkit-scrollbar-track {
  background-color: #ffc400; /* Change this to your desired background color */
}

/* The following rules are for the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: #888; /* Change this to your desired thumb color */
}

/* For Firefox */
/* The following rules are for the scrollbar track */
html {
  scrollbar-color: #fed405 #630b80; 
  
  /* Change this to your desired scrollbar track and thumb colors */
}


#emergencyImage {
  display: none;
  
}

@media (min-width: 768px) {
  #emergencyImage {
    display: block;
    position: fixed;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
  }
}
#closeEmergency {
  position: absolute;
  top: 50%;
  right: -25px; /* Adjust to center the button */
  transform: translateY(-50%);
  border-radius: 50%;
  border: 3px solid orangered;

  background-color: black;
  color: #fff;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001; /* Ensure button is above the div */
}
/* Custom CSS for hidden div */
#emergencyDiv {
  display: none;
background: linear-gradient(110deg, #D15200, #D10000); /* Change red and blue to your desired colors */
   background-size: cover;
  background-repeat: no-repeat;

 position: fixed;
  left: 40px;
  top: 50%;
  height:200px;
  width:300px;
  
  transform: translateY(-50%);
  padding: 10px;
  border: 2px solid black;
  z-index: 1000;
  
      border-top-right-radius: 10px; /* Add border radius to top right corner */
  border-bottom-right-radius: 10px; /* Add border radius to bottom right corner */
border: 5px solid orangered;
}




.col-md-1 {
  background-color: #003f2c;
  color: white;
  border-radius: 0  20px 20px 0;
  overflow: hidden; /* Ensure content doesn't overflow */
  padding: 10px;
}
 .col-md-11 {
   /* Just for demonstration */
  overflow: hidden; /* Ensure content doesn't overflow */
  padding: 10px;
}

#latestNewsContent ul li {
  display: none; /* Hide all list items initially */
}


#dpad{
      
  padding:2px;
  text-align: center;

}
#closeEmergencyy {
  position: absolute;
  top: 50%;
  right: -25px; /* Adjust to center the button */
  transform: translateY(-50%);
  border-radius: 50%;
  border: 3px solid black;

  background-color: rgb(255, 213, 0);
  color: #000000;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001; /* Ensure button is above the div */
}
      .emergency-message {
    display: none;
    position: fixed;
    top: 37%;
    left: 50%;
    width: 300px;
    height: 270px;
    transform: translate(-50%, -50%);
    background-color: red;
    padding: 20px;
    color: white;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

      
.buttonc {
padding: 10px 20px;
border-radius: 15px;
background: linear-gradient(to right, #000000, #14eab1);
color: white;
border: none;
font-size: 13px;

}

.buttonoo {
  padding: 10px 20px;
  border-radius: 15px;
  background: linear-gradient(to right, #a60101, #ea5b14);
  color: white;
  border: none;
  font-size: 13px;
  
  }
  



.buttond {
padding: 10px 20px;
border-radius: 15px;
background: linear-gradient(to right, #531212, #d8ea14);
color: white;

border: none;
font-size: 13px;

}

.buttone {
padding: 10px 20px;
border-radius: 15px;
background: linear-gradient(to right, #026547, #43058f);
color: white;
border: none;
font-size: 13px;

}

.buttonf {
padding: 10px 20px;
border-radius: 15px;
background: linear-gradient(to right, #650254, #000000);
color: white;
border: none;
font-size: 13px;

}


@media (max-width: 768px) {
  #hider {
    display: none; /* Hide the button on smaller screens */
  }



  
}
.mobile-link {
  display: none; /* Hide the link by default */
  padding: 5px;
  color:#e6e647; /* Blue color for link */
  
  height: 40px;
  text-align: center;
  width: 130px;
  border-radius: 15px;
  background-color: #034c40;
  border: 3px solid #e6e647; /* Border color for link */
 }

/* Hover effect for link */
.mobile-link:hover {
  background-color: #0c0e10; /* Change background color on hover */
  color: white; /* Change text color on hover */
}
/* Media query to show link on smaller screens */
@media (max-width: 768px) {
  .mobile-link {
    display: inline-block; /* Show the link on smaller screens */
  }
}




#datetime {
  display: none; /* Hide the link by default */
 
  color:#e6e647; /* Blue color for link */
 text-align: center;
 }

/* Hover effect for link */
#datetime:hover {
  background-color: #0c0e10; /* Change background color on hover */
  color: white; /* Change text color on hover */
}
/* Media query to show link on smaller screens */
@media (max-width: 768px) {
  #datetime {
    display: inline-block; /* Show the link on smaller screens */
  }
}










.buttonb {
padding: 10px 20px;
border: 2px solid #ff5f6d;
border-radius: 15px;
background: linear-gradient(to right, #7b00ff, #fd9709);
color: white;
border: none;
font-size: 14px;
}

    @keyframes blinking {
      0% {
        opacity: 1;
        color: #ffffff;
      }
      50% {
        opacity: 0;
        color: #ff0000;
      }
      100% {
        opacity: 1;
        color: #ffffff;
      }
    }
    
    .blinking-button {
      animation: blinking 1s infinite;
      border-radius: 20px;
      border: 2px solid #cdfa04;
      background: linear-gradient(to right, #36ac24, #6f01a6);
      color: #ffffff;
      padding: 10px 20px;
    }
    