/* Global Styles */

body {
  background-color: #202123;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  font-family: 'Orbitron', sans-serif;
}

.content {
  flex: 1;
  opacity: 0;
  transform: translateY(-50px);
  animation: slideIn 0.5s ease-out forwards;
}

.card {
  background-color: #444654;
  color: #fff !important;
  opacity: 0;
  transform: translateY(-50px);
  animation: slideIn 0.5s ease-out forwards;
}

.card-body {
    margin-top: 20px;
    padding: 20px;
}

a {
  color: #fff !important;
}

a:hover {
  color: #00c081 !important;
}


button[type="submit"] {
  background-color: #07aa75;
  border: 0;
}

.user-display {
  margin-right: 10px;
}

.user-display, .signup-login {
  padding: 10px;
  color: #fff;
}

.alert-warning {
  background-color: #07aa75;
  color: #fff;
  border-color; #5a9e2c!important:
}

.dropdown-item:hover {
  background-color: #07aa75;
  color: #fff !important;
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 20px; /* Height of the footer */
  background-color: #202123 !important;
  color: #fff !important;
  text-align: center;
  line-height: 30px;
}

.footer:hover {
  transform: translateY(-2px);
  background-color: #353740; /* Change background color */
}

.footer .text-muted {
  color: #fff !important;
}

#upload_form {
  margin-top: 50px;
  margin-left: 450px;
}

/* This will affect the scrollbar of all elements on the page. */
::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
    background: #353740; /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
    background-color: #888; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid #353740; /* creates padding around scroll thumb */
}

/* change color of scroll thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Global navbar styles */
.navbar {
  background-color: #444654 !important;
  border-bottom: 5px groove #07aa75;
  box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.3);
  font-family: 'Kanit', sans-serif;
}

/* Navbar brand/logo styles */
.navbar-brand img.logo {
  max-width: 175px; /* Adjust as needed for your logo */
}

/* Remove underline from spans inside the link on hover */
.navbar-brand:hover span {
  text-decoration: none !important;
}

/* Remove underline from span elements when hovering over the parent .navbar-brand */
.navbar-brand:hover .badge,
.navbar-brand:hover .version {
  text-decoration: none !important;
}


/* Navbar button styles */
.navbar .btn {
  margin-left: 10px; /* Space between buttons */
  transition: background-color 0.3s ease;
}

/* Adjust button colors as needed */
.navbar .btn-primary {
  background-color: #07aa75;
  border-color: #07aa75;
}

.navbar .btn-secondary {
  background-color: #444654;
  border-color: #444654;
}

.navbar .btn-primary:hover {
  background-color: #06a669;
  border-color: #06a669;
}

.navbar .btn-secondary:hover {
  background-color: #353740;
  border-color: #353740;
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    background-color: #444654; /* Background color of the dropdown */
    border: 2px solid #ddd; /* Border of the dropdown */
}

.navbar .dropdown-item {
    color: #333; /* Text color of dropdown items */
    transition: background-color 0.3s ease; /* Smooth background transition */
}

.navbar .dropdown-item:hover {
    background-color: #e9ecef; /* Background color on hover */
    color: #07aa75!important;
}


/* Beta badge styles */
.navbar .badge {
  font-weight: normal;
  font-size: 0.8em; /* Adjust as needed */
  vertical-align: super;
}

/* Version number styles */
.navbar .version {
  font-size: 0.8em; /* Adjust as needed */
  color: #fff; /* Adjust color as needed */
  vertical-align: super;
}

.navbar-text {
  color: #fff;
}

.weather-icon {
  transition: all 1.0s ease; /* Add a smooth transition */
}

.weather-icon:hover {
  opacity: 0.7; /* Change the opacity on hover */
  transform: scale(1.3); /* Slightly increase the size on hover */
}

/* Animations */
@keyframes popOut {
  0%, 80%, 100% {
    transform: scale(1);
  }

  90% {
    transform: scale(1.1);
  }
}

@keyframes slideIn {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 576px) {
  .logo-nav,
  .nav-logo-responsive {
    display: none;
  }

  .nav-logo-responsive-home {
  width: auto; /* Adjust to fit your logo size */
  height: 50px; /* Example size, adjust as needed */
  }
}


/* Media Min Width 577px */
@media (min-width: 577px) {
  .nav-logo-responsive {
    margin-left: 10px;
    margin-right: 10px;
    width: 12%;
  }

  .nav-logo-responsive-home {
    margin-left: 10px;
    margin-right: 10px;
    width: 12%;
  }

}

/* faq.html */

.faq-container {
  background-color: #444654;
  border-radius: 10px;
  text-align: center;
}


