/* Custom styling for Honey Dashboard */

/* Enhanced service cards with subtle animations */
.service-card {
  transition: all 0.3s ease;
  border-radius: 12px !important;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Enhanced widget styling */
.information-widget {
  border-radius: 12px !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom gradient background */
#page_container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  background-attachment: fixed;
}

/* Improved service group headers */
.service-group-name {
  background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700 !important;
  text-shadow: none !important;
}

/* Enhanced search bar */
.information-widget-search input {
  border-radius: 25px !important;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Widget container improvements */
.widget-container {
  border-radius: 12px !important;
}

/* Resource usage bars */
.resource-usage {
  border-radius: 8px !important;
}

/* Bookmark styling */
.bookmark {
  border-radius: 8px !important;
  transition: all 0.2s ease;
}

.bookmark:hover {
  transform: scale(1.02);
}

/* Service icons enhancement */
.service-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Status indicators */
.status-indicator {
  border-radius: 50% !important;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
