.body-wrapper {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #3a3897 0%, #2c2a72 40%, #1a1a4e 100%);
    color: #333;
}
.weather-icon-main {
    filter: drop-shadow(0 0 12px rgba(220, 220, 255, 0.5));
    animation: floating 3.5s ease-in-out infinite;
}
#currentWeatherCodeImg{
    width: 40px;
    height: 40px;
}
#humidityImg{
    width: 25px;
    height: 25px;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
#cloud-container {
    pointer-events: auto;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}
@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.animate-fadeInScaleUp {
    opacity: 0;
    animation: fadeInScaleUp 0.7s ease-out forwards;
}
@keyframes gentleBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.animate-gentleBob {
    animation: gentleBob 2.5s ease-in-out infinite;
}
.sun-info .sunrise:hover .sun-icon,
.sun-info .sunset:hover .sun-icon {
    transform: rotate(15deg) scale(1.15);
}
.sun-icon {
    transition: transform 0.3s ease-in-out;
}
.forecast-day:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0,0,0,0.2);
}
.forecast-hr:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0,0,0,0.2);
}
.forecast-day:hover .forecast-icon {
    transform: scale(1.2) translateY(-2px);
    transition: transform 0.3s ease-out;
}
.forecast-hr:hover .forecast-icon {
    transform: scale(1.2) translateY(-2px);
    transition: transform 0.3s ease-out;
}
#mobileContainerHrs::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#mobileContainerDay::-webkit-scrollbar, #mobileContainerHrs::-webkit-scrollbar, #topCurrentContainer::-webkit-scrollbar{
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#dayCellMob {
    scroll-snap-type: x mandatory;
}
.forecast-day {
    scroll-snap-align: start;
}
.forecast-hr{
        scroll-snap-align: start;
}
.forecast-day .forecast-icon {
     transition: transform 0.3s ease-out;
}
.forecast-hr .forecast-icon {
     transition: transform 0.3s ease-out;
}
.delay-100 { animation-delay: 0.1s !important; }
.delay-200 { animation-delay: 0.2s !important; }
.delay-300 { animation-delay: 0.3s !important; }
.delay-400 { animation-delay: 0.4s !important; }
.delay-500 { animation-delay: 0.5s !important; }
.delay-600 { animation-delay: 0.6s !important; }
.delay-700 { animation-delay: 0.7s !important; }
.custom-hover {
opacity: 0.1;
transition: opacity 300ms;
}
.custom-hover:active {
opacity: 0.3;
}
.tooltip-dsktp {
    position: relative;
    display: inline-block;
}
.tooltip-mob {
    position: relative;
    display: inline-block;
}
.tooltip-mob .tooltiptext {
  visibility: hidden;
  background-color: white;
  color: black;
  font-size: small;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}
.tooltip-dsktp .tooltiptext {
  visibility: hidden;
  background-color: white;
  color: black;
  font-size: small;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}
.tooltip-dsktp:hover .tooltiptext {
  visibility: visible;
}
.tooltip-mob:hover .tooltiptext {
  visibility: visible;
}
.tooltip-mob:active .tooltiptext {
  visibility: visible;
}