/* Hide widgets when screen width is below 768px (mobile screens) */
@media screen and (max-width: 400px) and (orientation: portrait) {
  .information-widget-greeting {
    display: none !important;
  }
}

@media screen and (max-width: 800px) and (orientation: portrait) {
  .information-widget-openmeteo,
  .information-widget-datetime {
    display: none !important;
  }
}

@media screen and (max-width: 1000px)  {
  .information-widget-logo{
    display: none !important;
  }
}

/* I don't use any of this custom code anymore, I just keep it here for your reference */

.down-bg {
  background-color: #ff0000 !important; /* this color works for my homepage theming, chances are you'll want to change it */
  /* I have this css transition code uncommented in mine, just personal preference */
  /* -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; */
}

.cryptocurrency {
  width: auto;
  height: 1060px;
}


/* Style for the custom keyboard button */
.custom-keyboard-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  z-index: 1000;
}

/* Hover effect for desktop */
.custom-keyboard-btn:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Slightly darker on hover */
}

/* Magnifying glass icon styling */
.custom-keyboard-btn svg {
  fill: white; /* Match other icons in your UI */
  width: 24px;
  height: 24px;
}
