/* Custom CSS for Homepage Dashboard */

/* Smooth animations for all interactions */
* {
  transition: all 0.2s ease-in-out;
}

/* Enhanced service cards with hover effects */
.service-card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(100, 149, 237, 0.5);
}

/* Accent color for important elements */
.service-card:hover .service-title {
  color: #6495ED;
}

/* Widget styling improvements */
.widget {
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

/* Header gradient effect */
.header-section {
  background: linear-gradient(135deg, rgba(100, 149, 237, 0.1) 0%, rgba(30, 60, 114, 0.1) 100%);
}

/* Search bar enhancement */
.search-input {
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
}

.search-input:focus {
  border-color: #6495ED;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(100, 149, 237, 0.3);
}

/* Category headers */
.category-header {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(100, 149, 237, 0.3);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/* Resource widget styling */
.resource-widget {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.2) 0%, rgba(15, 30, 60, 0.2) 100%);
}

/* Docker container status indicators */
.docker-running {
  color: #4ade80;
}

.docker-stopped {
  color: #ef4444;
}

/* Scrollbar styling for dark theme */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgba(100, 149, 237, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 149, 237, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 12px;
  }
}
