/* Основные стили */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Стили для статуса */
.status-online {
  background: linear-gradient(to right, rgb(16, 185, 129), rgb(34, 197, 94));
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.status-offline {
  background: linear-gradient(to right, rgb(239, 68, 68), rgb(244, 63, 94));
  color: white;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.25);
}

.status-checking {
  background: linear-gradient(to right, rgb(245, 158, 11), rgb(249, 115, 22));
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

/* Анимация для спиннера */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Стили для лога */
.log-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  transition: background-color 0.2s;
  border: 1px solid #e5e7eb;
}

.log-entry:hover {
  background-color: #f9fafb;
}

.log-entry .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
}

.log-entry .status-dot.online { background-color: #22c55e; }
.log-entry .status-dot.offline { background-color: #ef4444; }
.log-entry .status-dot.checking { background-color: #f97316; }

/* Скроллбар для лога */
#check-log::-webkit-scrollbar {
  width: 6px;
}
#check-log::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
#check-log::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
#check-log::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
} 