/* Custom CSS for Homepage Dashboard */

/* VPN Status Indicator */
.vpn-status {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  padding: 15px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vpn-status.connected {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.vpn-status.disconnected {
  background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

/* Service cards hover effect */
.service-card {
  transition: transform 0.2s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Status dots - make them more visible */
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.status-dot.online {
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.status-dot.offline {
  background-color: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

/* Widget styling */
.widget-container {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
  .widget-container {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}