/* [project]/src/styles/NodeCard.module.css [app-client] (css) */
.NodeCard-module__HdwGEa__nodeCard {
  padding: 1rem;
  border: 2px solid;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  background: #1e1e1e;
  color: #d4d4d4;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.NodeCard-module__HdwGEa__nodeCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000004d;
}

.NodeCard-module__HdwGEa__nodeCard.NodeCard-module__HdwGEa__criticalAlert {
  animation: 2s infinite NodeCard-module__HdwGEa__glowPulse;
}

@keyframes NodeCard-module__HdwGEa__glowPulse {
  0%, 100% {
    box-shadow: 0 0 15px #ff444480;
  }

  50% {
    box-shadow: 0 0 25px #f44c;
  }
}

.NodeCard-module__HdwGEa__nodeHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem;
}

.NodeCard-module__HdwGEa__nodeTitle {
  flex: 1;
}

.NodeCard-module__HdwGEa__nodeHeader h2 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.NodeCard-module__HdwGEa__instanceType {
  font-size: .8rem;
  color: #aaa;
  background: #2a2a2a;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 500;
}

.NodeCard-module__HdwGEa__statusBadge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.NodeCard-module__HdwGEa__healthScore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  background: #2a2a2a;
  border-radius: 4px;
  margin-bottom: .5rem;
}

.NodeCard-module__HdwGEa__healthLabel {
  font-size: .85rem;
  color: #aaa;
}

.NodeCard-module__HdwGEa__healthValue {
  font-size: 1.5rem;
  font-weight: bold;
}

.NodeCard-module__HdwGEa__metricsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: .5rem;
}

.NodeCard-module__HdwGEa__metricsGrid .NodeCard-module__HdwGEa__metricItem:nth-child(3), .NodeCard-module__HdwGEa__metricsGrid .NodeCard-module__HdwGEa__metricItem:nth-child(4) {
  grid-column: span 1;
}

.NodeCard-module__HdwGEa__metricItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .25rem 0;
  border-bottom: 1px solid #333;
}

.NodeCard-module__HdwGEa__metricLabel {
  font-size: .85rem;
  color: #aaa;
  font-weight: 500;
}

.NodeCard-module__HdwGEa__metricValue {
  font-size: .85rem;
  font-weight: 600;
}

.NodeCard-module__HdwGEa__podsSummary {
  padding: .5rem;
  background: #2a2a2a;
  border-radius: 4px;
  margin-bottom: .5rem;
}

.NodeCard-module__HdwGEa__podsLabel {
  font-size: .85rem;
  color: #aaa;
  margin-bottom: .25rem;
  font-weight: 500;
}

.NodeCard-module__HdwGEa__podsCounts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.NodeCard-module__HdwGEa__podCountButton {
  font-size: .75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  background: #ffffff1a;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.NodeCard-module__HdwGEa__podCountButton:hover:not(:disabled) {
  background: #fff3;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px #0003;
}

.NodeCard-module__HdwGEa__podCountButton:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.NodeCard-module__HdwGEa__podCountButton:active:not(:disabled) {
  transform: translateY(0);
}

.NodeCard-module__HdwGEa__conditions {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .5rem;
}

.NodeCard-module__HdwGEa__condition {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

.NodeCard-module__HdwGEa__conditionName {
  color: #aaa;
  font-weight: 500;
}

.NodeCard-module__HdwGEa__conditionStatus {
  font-weight: 600;
  text-transform: uppercase;
  font-size: .75rem;
}

.NodeCard-module__HdwGEa__lastEvent {
  padding: .5rem;
  background: #2a2a2a;
  border-radius: 4px;
  margin-bottom: .5rem;
}

.NodeCard-module__HdwGEa__eventLabel {
  font-size: .85rem;
  color: #aaa;
  font-weight: 500;
  display: block;
  margin-bottom: .25rem;
}

.NodeCard-module__HdwGEa__eventMessage {
  font-size: .8rem;
  color: #d4d4d4;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.NodeCard-module__HdwGEa__actions {
  display: flex;
  gap: .5rem;
  margin-top: auto;
}

.NodeCard-module__HdwGEa__actionButton {
  flex: 1;
  padding: .5rem;
  border: none;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
}

.NodeCard-module__HdwGEa__logsButton {
  background: #2196f3;
  color: #fff;
}

.NodeCard-module__HdwGEa__logsButton:hover:not(:disabled) {
  background: #1976d2;
  transform: translateY(-1px);
}

.NodeCard-module__HdwGEa__eventsButton {
  background: #4caf50;
  color: #fff;
}

.NodeCard-module__HdwGEa__eventsButton:hover:not(:disabled) {
  background: #388e3c;
  transform: translateY(-1px);
}

.NodeCard-module__HdwGEa__actionButton:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.NodeCard-module__HdwGEa__actionButton.NodeCard-module__HdwGEa__loading {
  background: #666;
  cursor: wait;
}

.NodeCard-module__HdwGEa__recommendations {
  margin-top: .5rem;
  padding: .5rem;
  background: #2a2a2a;
  border-radius: 4px;
  border-left: 3px solid #fa0;
}

.NodeCard-module__HdwGEa__recommendationsTitle {
  font-size: .8rem;
  color: #fa0;
  font-weight: 600;
  margin-bottom: .25rem;
}

.NodeCard-module__HdwGEa__recommendation {
  font-size: .75rem;
  color: #d4d4d4;
  line-height: 1.3;
  margin-bottom: .1rem;
}

.NodeCard-module__HdwGEa__high {
  color: #ff9800;
}

.NodeCard-module__HdwGEa__normal {
  color: #4caf50;
}

.NodeCard-module__HdwGEa__low {
  color: #2196f3;
}

.NodeCard-module__HdwGEa__critical {
  color: #f44336;
}

@media (width <= 768px) {
  .NodeCard-module__HdwGEa__nodeCard {
    min-height: 350px;
    padding: .75rem;
  }

  .NodeCard-module__HdwGEa__metricsGrid {
    grid-template-columns: 1fr;
  }

  .NodeCard-module__HdwGEa__podsCounts {
    flex-direction: column;
    gap: .25rem;
  }

  .NodeCard-module__HdwGEa__actions {
    flex-direction: column;
  }

  .NodeCard-module__HdwGEa__nodeHeader h2 {
    font-size: 1rem;
  }

  .NodeCard-module__HdwGEa__healthValue {
    font-size: 1.2rem;
  }
}

@media (width <= 480px) {
  .NodeCard-module__HdwGEa__nodeCard {
    min-height: 300px;
    padding: .5rem;
  }

  .NodeCard-module__HdwGEa__conditions {
    font-size: .75rem;
  }

  .NodeCard-module__HdwGEa__metricItem {
    font-size: .8rem;
  }
}


/* [project]/src/styles/NodeLogViewer.module.css [app-client] (css) */
.NodeLogViewer-module__NRf1EW__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.NodeLogViewer-module__NRf1EW__logViewer {
  background: #1e1e1e;
  border-radius: 8px;
  width: 100%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px #00000080;
}

.NodeLogViewer-module__NRf1EW__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #333;
  background: #2a2a2a;
  border-radius: 8px 8px 0 0;
}

.NodeLogViewer-module__NRf1EW__headerLeft h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.5rem;
}

.NodeLogViewer-module__NRf1EW__nodeInfo {
  display: flex;
  gap: 20px;
  font-size: .85rem;
  color: #aaa;
}

.NodeLogViewer-module__NRf1EW__nodeInfo span {
  padding: 4px 8px;
  background: #1e1e1e;
  border-radius: 4px;
}

.NodeLogViewer-module__NRf1EW__headerRight {
  display: flex;
  align-items: center;
  gap: 20px;
}

.NodeLogViewer-module__NRf1EW__stats {
  display: flex;
  gap: 15px;
}

.NodeLogViewer-module__NRf1EW__statItem {
  text-align: center;
  padding: 8px 12px;
  background: #1e1e1e;
  border-radius: 4px;
  min-width: 60px;
}

.NodeLogViewer-module__NRf1EW__statValue {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #4caf50;
}

.NodeLogViewer-module__NRf1EW__statLabel {
  display: block;
  font-size: .75rem;
  color: #aaa;
  text-transform: uppercase;
}

.NodeLogViewer-module__NRf1EW__closeButton {
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.NodeLogViewer-module__NRf1EW__closeButton:hover {
  background: #d32f2f;
}

.NodeLogViewer-module__NRf1EW__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #2a2a2a;
  border-bottom: 1px solid #333;
  flex-wrap: wrap;
  gap: 15px;
}

.NodeLogViewer-module__NRf1EW__sectionSelector {
  display: flex;
  gap: 5px;
}

.NodeLogViewer-module__NRf1EW__sectionButton {
  padding: 8px 16px;
  background: #1e1e1e;
  color: #aaa;
  border: 1px solid #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  transition: all .2s;
}

.NodeLogViewer-module__NRf1EW__sectionButton:hover {
  background: #333;
  color: #fff;
}

.NodeLogViewer-module__NRf1EW__sectionButton.NodeLogViewer-module__NRf1EW__active {
  background: #2196f3;
  color: #fff;
  border-color: #2196f3;
}

.NodeLogViewer-module__NRf1EW__filters {
  display: flex;
  gap: 10px;
  align-items: center;
}

.NodeLogViewer-module__NRf1EW__filterSelect {
  padding: 8px 12px;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: .85rem;
}

.NodeLogViewer-module__NRf1EW__searchInput {
  padding: 8px 12px;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: .85rem;
  min-width: 200px;
}

.NodeLogViewer-module__NRf1EW__searchInput:focus {
  outline: none;
  border-color: #2196f3;
}

.NodeLogViewer-module__NRf1EW__refreshButton {
  padding: 8px 16px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  transition: background .2s;
}

.NodeLogViewer-module__NRf1EW__refreshButton:hover {
  background: #388e3c;
}

.NodeLogViewer-module__NRf1EW__logContent {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.NodeLogViewer-module__NRf1EW__logText {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  margin: 0;
  background: #1e1e1e;
  color: #d4d4d4;
  font-family: Courier New, monospace;
  font-size: .85rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.NodeLogViewer-module__NRf1EW__logText .timestamp {
  color: #888;
  font-weight: normal;
}

.NodeLogViewer-module__NRf1EW__logText .error-text {
  color: #f44;
  font-weight: bold;
}

.NodeLogViewer-module__NRf1EW__logText .warning-text {
  color: #fa0;
  font-weight: bold;
}

.NodeLogViewer-module__NRf1EW__logText .kubelet-text {
  color: #0cc;
  font-weight: bold;
}

.NodeLogViewer-module__NRf1EW__logText .system-text {
  color: #f80;
  font-weight: bold;
}

.NodeLogViewer-module__NRf1EW__loadingContainer {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: #d4d4d4;
}

.NodeLogViewer-module__NRf1EW__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #333;
  border-top: 4px solid #2196f3;
  border-radius: 50%;
  animation: 1s linear infinite NodeLogViewer-module__NRf1EW__spin;
  margin: 0 auto 20px;
}

@keyframes NodeLogViewer-module__NRf1EW__spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.NodeLogViewer-module__NRf1EW__errorContainer {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: #d4d4d4;
  max-width: 500px;
}

.NodeLogViewer-module__NRf1EW__errorContainer h2 {
  color: #f44;
  margin-bottom: 20px;
}

.NodeLogViewer-module__NRf1EW__retryButton {
  padding: 10px 20px;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 10px;
  transition: background .2s;
}

.NodeLogViewer-module__NRf1EW__retryButton:hover {
  background: #1976d2;
}

@media (width <= 768px) {
  .NodeLogViewer-module__NRf1EW__overlay {
    padding: 10px;
  }

  .NodeLogViewer-module__NRf1EW__logViewer {
    height: 95vh;
  }

  .NodeLogViewer-module__NRf1EW__header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .NodeLogViewer-module__NRf1EW__headerRight {
    width: 100%;
    justify-content: space-between;
  }

  .NodeLogViewer-module__NRf1EW__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .NodeLogViewer-module__NRf1EW__sectionSelector {
    justify-content: center;
  }

  .NodeLogViewer-module__NRf1EW__filters {
    justify-content: center;
    flex-wrap: wrap;
  }

  .NodeLogViewer-module__NRf1EW__searchInput {
    min-width: 150px;
  }

  .NodeLogViewer-module__NRf1EW__nodeInfo {
    flex-direction: column;
    gap: 5px;
  }
}

@media (width <= 480px) {
  .NodeLogViewer-module__NRf1EW__stats {
    gap: 10px;
  }

  .NodeLogViewer-module__NRf1EW__statItem {
    min-width: 50px;
    padding: 6px 8px;
  }

  .NodeLogViewer-module__NRf1EW__statValue {
    font-size: 1rem;
  }

  .NodeLogViewer-module__NRf1EW__sectionButton {
    padding: 6px 12px;
    font-size: .8rem;
  }

  .NodeLogViewer-module__NRf1EW__logText {
    font-size: .8rem;
    padding: 15px;
  }
}


/* [project]/src/styles/NodeEventsViewer.module.css [app-client] (css) */
.NodeEventsViewer-module__ppeEAq__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.NodeEventsViewer-module__ppeEAq__eventsViewer {
  background: #1e1e1e;
  border-radius: 8px;
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px #00000080;
}

.NodeEventsViewer-module__ppeEAq__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #333;
  background: #2a2a2a;
  border-radius: 8px 8px 0 0;
}

.NodeEventsViewer-module__ppeEAq__headerLeft h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.5rem;
}

.NodeEventsViewer-module__ppeEAq__eventCount {
  font-size: .85rem;
  color: #aaa;
}

.NodeEventsViewer-module__ppeEAq__headerRight {
  display: flex;
  align-items: center;
  gap: 20px;
}

.NodeEventsViewer-module__ppeEAq__stats {
  display: flex;
  gap: 15px;
}

.NodeEventsViewer-module__ppeEAq__statItem {
  text-align: center;
  padding: 8px 12px;
  background: #1e1e1e;
  border-radius: 4px;
  min-width: 60px;
}

.NodeEventsViewer-module__ppeEAq__statValue {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}

.NodeEventsViewer-module__ppeEAq__statLabel {
  display: block;
  font-size: .75rem;
  color: #aaa;
  text-transform: uppercase;
}

.NodeEventsViewer-module__ppeEAq__closeButton {
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.NodeEventsViewer-module__ppeEAq__closeButton:hover {
  background: #d32f2f;
}

.NodeEventsViewer-module__ppeEAq__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #2a2a2a;
  border-bottom: 1px solid #333;
  flex-wrap: wrap;
  gap: 15px;
}

.NodeEventsViewer-module__ppeEAq__filters {
  display: flex;
  gap: 10px;
  align-items: center;
}

.NodeEventsViewer-module__ppeEAq__filterSelect, .NodeEventsViewer-module__ppeEAq__sortSelect {
  padding: 8px 12px;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: .85rem;
}

.NodeEventsViewer-module__ppeEAq__sortButton {
  padding: 8px 12px;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  transition: background .2s;
}

.NodeEventsViewer-module__ppeEAq__sortButton:hover {
  background: #1976d2;
}

.NodeEventsViewer-module__ppeEAq__searchContainer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.NodeEventsViewer-module__ppeEAq__searchInput {
  padding: 8px 12px;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: .85rem;
  min-width: 200px;
}

.NodeEventsViewer-module__ppeEAq__searchInput:focus {
  outline: none;
  border-color: #2196f3;
}

.NodeEventsViewer-module__ppeEAq__refreshButton {
  padding: 8px 16px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  transition: background .2s;
}

.NodeEventsViewer-module__ppeEAq__refreshButton:hover {
  background: #388e3c;
}

.NodeEventsViewer-module__ppeEAq__eventsList {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.NodeEventsViewer-module__ppeEAq__eventItem {
  background: #2a2a2a;
  border-radius: 6px;
  margin-bottom: 15px;
  border-left: 4px solid #4caf50;
  transition: all .2s;
}

.NodeEventsViewer-module__ppeEAq__eventItem:hover {
  background: #333;
  transform: translateX(2px);
}

.NodeEventsViewer-module__ppeEAq__eventItem.NodeEventsViewer-module__ppeEAq__warning {
  border-left-color: #ff9800;
}

.NodeEventsViewer-module__ppeEAq__eventItem.NodeEventsViewer-module__ppeEAq__error {
  border-left-color: #f44336;
}

.NodeEventsViewer-module__ppeEAq__eventHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 10px;
  border-bottom: 1px solid #333;
}

.NodeEventsViewer-module__ppeEAq__eventType {
  display: flex;
  align-items: center;
  gap: 8px;
}

.NodeEventsViewer-module__ppeEAq__eventTypeIcon {
  font-size: 1.2rem;
  font-weight: bold;
}

.NodeEventsViewer-module__ppeEAq__eventTypeLabel {
  font-weight: bold;
  font-size: .9rem;
  text-transform: uppercase;
}

.NodeEventsViewer-module__ppeEAq__eventTimestamp {
  font-size: .8rem;
  color: #aaa;
}

.NodeEventsViewer-module__ppeEAq__eventContent {
  padding: 15px 20px;
}

.NodeEventsViewer-module__ppeEAq__eventReason {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}

.NodeEventsViewer-module__ppeEAq__eventMessage {
  font-size: .9rem;
  line-height: 1.4;
  color: #d4d4d4;
  margin-bottom: 10px;
}

.NodeEventsViewer-module__ppeEAq__eventMeta {
  display: flex;
  gap: 15px;
  font-size: .8rem;
  color: #aaa;
  flex-wrap: wrap;
}

.NodeEventsViewer-module__ppeEAq__eventMeta span {
  padding: 2px 6px;
  background: #1e1e1e;
  border-radius: 3px;
}

.NodeEventsViewer-module__ppeEAq__noEvents {
  text-align: center;
  padding: 40px;
  color: #aaa;
}

.NodeEventsViewer-module__ppeEAq__noEvents p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.NodeEventsViewer-module__ppeEAq__clearFiltersButton {
  padding: 10px 20px;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
}

.NodeEventsViewer-module__ppeEAq__clearFiltersButton:hover {
  background: #1976d2;
}

.NodeEventsViewer-module__ppeEAq__loadingContainer {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: #d4d4d4;
}

.NodeEventsViewer-module__ppeEAq__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #333;
  border-top: 4px solid #2196f3;
  border-radius: 50%;
  animation: 1s linear infinite NodeEventsViewer-module__ppeEAq__spin;
  margin: 0 auto 20px;
}

@keyframes NodeEventsViewer-module__ppeEAq__spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.NodeEventsViewer-module__ppeEAq__errorContainer {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: #d4d4d4;
  max-width: 500px;
}

.NodeEventsViewer-module__ppeEAq__errorContainer h2 {
  color: #f44;
  margin-bottom: 20px;
}

.NodeEventsViewer-module__ppeEAq__retryButton {
  padding: 10px 20px;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 10px;
  transition: background .2s;
}

.NodeEventsViewer-module__ppeEAq__retryButton:hover {
  background: #1976d2;
}

@media (width <= 768px) {
  .NodeEventsViewer-module__ppeEAq__overlay {
    padding: 10px;
  }

  .NodeEventsViewer-module__ppeEAq__eventsViewer {
    height: 95vh;
  }

  .NodeEventsViewer-module__ppeEAq__header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .NodeEventsViewer-module__ppeEAq__headerRight {
    width: 100%;
    justify-content: space-between;
  }

  .NodeEventsViewer-module__ppeEAq__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .NodeEventsViewer-module__ppeEAq__filters {
    justify-content: center;
    flex-wrap: wrap;
  }

  .NodeEventsViewer-module__ppeEAq__searchContainer {
    justify-content: center;
  }

  .NodeEventsViewer-module__ppeEAq__searchInput {
    min-width: 150px;
  }

  .NodeEventsViewer-module__ppeEAq__eventHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .NodeEventsViewer-module__ppeEAq__eventMeta {
    flex-direction: column;
    gap: 5px;
  }
}

@media (width <= 480px) {
  .NodeEventsViewer-module__ppeEAq__stats {
    gap: 10px;
  }

  .NodeEventsViewer-module__ppeEAq__statItem {
    min-width: 50px;
    padding: 6px 8px;
  }

  .NodeEventsViewer-module__ppeEAq__statValue {
    font-size: 1rem;
  }

  .NodeEventsViewer-module__ppeEAq__eventItem {
    margin-bottom: 10px;
  }

  .NodeEventsViewer-module__ppeEAq__eventHeader, .NodeEventsViewer-module__ppeEAq__eventContent {
    padding: 10px 15px;
  }

  .NodeEventsViewer-module__ppeEAq__eventReason {
    font-size: .9rem;
  }

  .NodeEventsViewer-module__ppeEAq__eventMessage {
    font-size: .85rem;
  }
}


/* [project]/src/styles/NodePodViewer.module.css [app-client] (css) */
.NodePodViewer-module__B6JfNa__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.NodePodViewer-module__B6JfNa__podViewer {
  background: #1e1e1e;
  border-radius: 8px;
  width: 100%;
  max-width: 1400px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px #00000080;
}

.NodePodViewer-module__B6JfNa__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #333;
  background: #2a2a2a;
  border-radius: 8px 8px 0 0;
}

.NodePodViewer-module__B6JfNa__headerLeft h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 1.5rem;
}

.NodePodViewer-module__B6JfNa__podStats {
  display: flex;
  gap: 15px;
}

.NodePodViewer-module__B6JfNa__statItem {
  text-align: center;
  padding: 8px 12px;
  background: #1e1e1e;
  border-radius: 4px;
  min-width: 60px;
}

.NodePodViewer-module__B6JfNa__statValue {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}

.NodePodViewer-module__B6JfNa__statLabel {
  display: block;
  font-size: .75rem;
  color: #aaa;
  text-transform: uppercase;
}

.NodePodViewer-module__B6JfNa__headerRight {
  display: flex;
  align-items: center;
  gap: 15px;
}

.NodePodViewer-module__B6JfNa__refreshButton {
  padding: 8px 16px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  transition: background .2s;
}

.NodePodViewer-module__B6JfNa__refreshButton:hover {
  background: #388e3c;
}

.NodePodViewer-module__B6JfNa__closeButton {
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.NodePodViewer-module__B6JfNa__closeButton:hover {
  background: #d32f2f;
}

.NodePodViewer-module__B6JfNa__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #2a2a2a;
  border-bottom: 1px solid #333;
  flex-wrap: wrap;
  gap: 15px;
}

.NodePodViewer-module__B6JfNa__statusFilters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.NodePodViewer-module__B6JfNa__statusButton {
  padding: 8px 16px;
  background: #1e1e1e;
  color: #aaa;
  border: 1px solid #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  transition: all .2s;
}

.NodePodViewer-module__B6JfNa__statusButton:hover {
  background: #333;
  color: #fff;
}

.NodePodViewer-module__B6JfNa__statusButton.NodePodViewer-module__B6JfNa__active {
  background: #2196f3;
  color: #fff;
  border-color: #2196f3;
}

.NodePodViewer-module__B6JfNa__searchContainer {
  display: flex;
  align-items: center;
}

.NodePodViewer-module__B6JfNa__searchInput {
  padding: 8px 12px;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: .85rem;
  min-width: 300px;
}

.NodePodViewer-module__B6JfNa__searchInput:focus {
  outline: none;
  border-color: #2196f3;
}

.NodePodViewer-module__B6JfNa__podsContainer {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.NodePodViewer-module__B6JfNa__podsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}

.NodePodViewer-module__B6JfNa__podWrapper {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #333;
  transition: all .2s;
}

.NodePodViewer-module__B6JfNa__podWrapper:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000004d;
}

.NodePodViewer-module__B6JfNa__podHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.NodePodViewer-module__B6JfNa__podInfo {
  flex: 1;
}

.NodePodViewer-module__B6JfNa__podName {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.NodePodViewer-module__B6JfNa__podNamespace {
  color: #aaa;
  font-size: .8rem;
  background: #1e1e1e;
  padding: 2px 6px;
  border-radius: 3px;
}

.NodePodViewer-module__B6JfNa__podStatus {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.NodePodViewer-module__B6JfNa__podDetails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.NodePodViewer-module__B6JfNa__podDetail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

.NodePodViewer-module__B6JfNa__detailLabel {
  color: #aaa;
  font-weight: 500;
}

.NodePodViewer-module__B6JfNa__detailValue {
  color: #d4d4d4;
  font-weight: 600;
}

.NodePodViewer-module__B6JfNa__containersList {
  margin-bottom: 12px;
}

.NodePodViewer-module__B6JfNa__containersTitle {
  font-size: .8rem;
  color: #aaa;
  margin-bottom: 6px;
  font-weight: 600;
}

.NodePodViewer-module__B6JfNa__containerItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  background: #1e1e1e;
  border-radius: 4px;
  margin-bottom: 4px;
  font-size: .8rem;
}

.NodePodViewer-module__B6JfNa__containerName {
  color: #4caf50;
  font-weight: 600;
}

.NodePodViewer-module__B6JfNa__containerImage {
  color: #aaa;
  font-size: .75rem;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.NodePodViewer-module__B6JfNa__labelsList {
  margin-bottom: 8px;
}

.NodePodViewer-module__B6JfNa__labelsTitle {
  font-size: .8rem;
  color: #aaa;
  margin-bottom: 6px;
  font-weight: 600;
}

.NodePodViewer-module__B6JfNa__labelsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.NodePodViewer-module__B6JfNa__label {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: .75rem;
  border: 1px solid #333;
}

.NodePodViewer-module__B6JfNa__noPods {
  text-align: center;
  padding: 40px;
  color: #aaa;
}

.NodePodViewer-module__B6JfNa__noPods p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.NodePodViewer-module__B6JfNa__clearFiltersButton {
  padding: 10px 20px;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
}

.NodePodViewer-module__B6JfNa__clearFiltersButton:hover {
  background: #1976d2;
}

.NodePodViewer-module__B6JfNa__loadingContainer {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: #d4d4d4;
}

.NodePodViewer-module__B6JfNa__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #333;
  border-top: 4px solid #2196f3;
  border-radius: 50%;
  animation: 1s linear infinite NodePodViewer-module__B6JfNa__spin;
  margin: 0 auto 20px;
}

@keyframes NodePodViewer-module__B6JfNa__spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.NodePodViewer-module__B6JfNa__errorContainer {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: #d4d4d4;
  max-width: 500px;
}

.NodePodViewer-module__B6JfNa__errorContainer h2 {
  color: #f44;
  margin-bottom: 20px;
}

.NodePodViewer-module__B6JfNa__retryButton {
  padding: 10px 20px;
  background: #2196f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 10px;
  transition: background .2s;
}

.NodePodViewer-module__B6JfNa__retryButton:hover {
  background: #1976d2;
}

@media (width <= 768px) {
  .NodePodViewer-module__B6JfNa__overlay {
    padding: 10px;
  }

  .NodePodViewer-module__B6JfNa__podViewer {
    height: 95vh;
  }

  .NodePodViewer-module__B6JfNa__header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .NodePodViewer-module__B6JfNa__headerRight {
    width: 100%;
    justify-content: space-between;
  }

  .NodePodViewer-module__B6JfNa__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .NodePodViewer-module__B6JfNa__statusFilters {
    justify-content: center;
  }

  .NodePodViewer-module__B6JfNa__searchInput {
    min-width: 200px;
  }

  .NodePodViewer-module__B6JfNa__podsGrid {
    grid-template-columns: 1fr;
  }

  .NodePodViewer-module__B6JfNa__podDetails {
    grid-template-columns: 1fr;
  }
}

@media (width <= 480px) {
  .NodePodViewer-module__B6JfNa__podStats {
    gap: 10px;
  }

  .NodePodViewer-module__B6JfNa__statItem {
    min-width: 50px;
    padding: 6px 8px;
  }

  .NodePodViewer-module__B6JfNa__statValue {
    font-size: 1rem;
  }

  .NodePodViewer-module__B6JfNa__statusButton {
    padding: 6px 12px;
    font-size: .8rem;
  }

  .NodePodViewer-module__B6JfNa__podWrapper {
    padding: 12px;
  }

  .NodePodViewer-module__B6JfNa__podName {
    font-size: 1rem;
  }

  .NodePodViewer-module__B6JfNa__containerImage {
    max-width: 150px;
  }
}


/* [project]/src/styles/DarkTheme.module.css [app-client] (css) */
.DarkTheme-module__FIN6lW__container {
  padding: 2rem;
  margin: 0 auto;
  background-color: #121212;
  color: #e0e0e0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.DarkTheme-module__FIN6lW__title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.DarkTheme-module__FIN6lW__sectionTitle {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.DarkTheme-module__FIN6lW__backLink {
  margin-bottom: 20px;
}

.DarkTheme-module__FIN6lW__backLink a {
  display: inline-flex;
  align-items: center;
  color: #64b5f6;
  text-decoration: none;
  font-weight: 500;
}

.DarkTheme-module__FIN6lW__backLink a:hover {
  text-decoration: underline;
  color: #90caf9;
}

.DarkTheme-module__FIN6lW__instanceContainer {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 6px #0000004d;
}

.DarkTheme-module__FIN6lW__instanceHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.DarkTheme-module__FIN6lW__statusBadge {
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: bold;
  font-size: .9rem;
  text-transform: uppercase;
}

.DarkTheme-module__FIN6lW__statusBadge[data-status="running"] {
  background-color: #4caf5033;
  color: #4caf50;
  border: 1px solid #4caf50;
}

.DarkTheme-module__FIN6lW__statusBadge[data-status="stopped"] {
  background-color: #f4433633;
  color: #f44336;
  border: 1px solid #f44336;
}

.DarkTheme-module__FIN6lW__statusBadge[data-status="pending"] {
  background-color: #ffc10733;
  color: #ffc107;
  border: 1px solid #ffc107;
}

.DarkTheme-module__FIN6lW__instanceInfo {
  margin-bottom: 20px;
}

.DarkTheme-module__FIN6lW__infoCard {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px #0003;
}

.DarkTheme-module__FIN6lW__chartsSection {
  margin-bottom: 30px;
}

.DarkTheme-module__FIN6lW__chartsSectionTitle {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}

.DarkTheme-module__FIN6lW__chartBlock {
  margin-bottom: 25px;
}

.DarkTheme-module__FIN6lW__chartsContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (width >= 1024px) {
  .DarkTheme-module__FIN6lW__chartsContainer {
    grid-template-columns: 1fr;
  }
}

.DarkTheme-module__FIN6lW__chartCard {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px #0003;
}

.DarkTheme-module__FIN6lW__chart {
  height: 300px;
  position: relative;
  background-color: #212121;
  border-radius: 4px;
  padding: 12px;
}

.DarkTheme-module__FIN6lW__cpuChartContainer {
  margin-bottom: 20px;
}

.DarkTheme-module__FIN6lW__dataSourceInfo {
  display: flex;
  align-items: center;
  margin-top: -10px;
  margin-bottom: 15px;
  font-size: 13px;
}

.DarkTheme-module__FIN6lW__dataSourceLabel {
  color: #90caf9;
  font-weight: 500;
  margin-right: 8px;
}

.DarkTheme-module__FIN6lW__dataSourceValue {
  color: #64dd17;
}

.DarkTheme-module__FIN6lW__noData {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #757575;
  font-style: italic;
  background-color: #212121;
  border-radius: 4px;
}

.DarkTheme-module__FIN6lW__cardTitle {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 1px solid #444;
  padding-bottom: .5rem;
}

.DarkTheme-module__FIN6lW__instanceDetails {
  font-size: 14px;
}

.DarkTheme-module__FIN6lW__instanceDetails p {
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.DarkTheme-module__FIN6lW__instanceDetails strong {
  color: #90caf9;
  margin-right: 8px;
}

.DarkTheme-module__FIN6lW__running {
  color: #4caf50;
  font-weight: bold;
}

.DarkTheme-module__FIN6lW__stopping, .DarkTheme-module__FIN6lW__pending {
  color: #ffc107;
  font-weight: bold;
}

.DarkTheme-module__FIN6lW__stopped, .DarkTheme-module__FIN6lW__terminated {
  color: #f44336;
  font-weight: bold;
}

.DarkTheme-module__FIN6lW__good {
  color: #4caf50;
  font-weight: bold;
}

.DarkTheme-module__FIN6lW__warning {
  color: #ff9800;
  font-weight: bold;
}

.DarkTheme-module__FIN6lW__errorMessage {
  color: #f44336;
  padding: 15px;
  background-color: #f443361a;
  border-radius: 5px;
  margin-top: 20px;
  border-left: 4px solid #f44336;
}

.DarkTheme-module__FIN6lW__loadingContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.DarkTheme-module__FIN6lW__loadingText {
  color: #90caf9;
  font-style: italic;
  font-size: 1.2rem;
}

.DarkTheme-module__FIN6lW__footer {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #333;
}

.DarkTheme-module__FIN6lW__footerList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
  padding: 0;
}

.DarkTheme-module__FIN6lW__footerList li a {
  color: #64b5f6;
  text-decoration: none;
  transition: color .2s;
}

.DarkTheme-module__FIN6lW__footerList li a:hover {
  color: #90caf9;
  text-decoration: underline;
}

.DarkTheme-module__FIN6lW__monitoringNote {
  margin-top: 20px;
  padding: 16px;
  background-color: #2196f31a;
  border-left: 4px solid #2196f3;
  border-radius: 4px;
}

.DarkTheme-module__FIN6lW__noteTitle {
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.DarkTheme-module__FIN6lW__monitoringNote a {
  color: #64b5f6;
  text-decoration: none;
  font-weight: 500;
}

.DarkTheme-module__FIN6lW__monitoringNote a:hover {
  text-decoration: underline;
  color: #90caf9;
}

.DarkTheme-module__FIN6lW__logsSection {
  margin: 20px 0;
  padding: 15px;
  background-color: #1e1e1e;
  border-radius: 8px;
}

.DarkTheme-module__FIN6lW__logButton {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: opacity .2s;
}

.DarkTheme-module__FIN6lW__logButton:hover {
  opacity: .9;
}

.DarkTheme-module__FIN6lW__logsExpanded {
  margin-top: 15px;
  background-color: #2d2d2d;
  border-radius: 4px;
  overflow: hidden;
}

.DarkTheme-module__FIN6lW__logHeader {
  padding: 10px 15px;
  background-color: #3d3d3d;
  font-weight: bold;
  color: #e0e0e0;
}

.DarkTheme-module__FIN6lW__logContent {
  padding: 15px;
  margin: 0;
  white-space: pre-wrap;
  font-family: monospace;
  font-size: 13px;
  color: #e0e0e0;
  max-height: 400px;
  overflow-y: auto;
}

.DarkTheme-module__FIN6lW__noLogs {
  padding: 15px;
  color: #888;
  font-style: italic;
}

.DarkTheme-module__FIN6lW__logError {
  padding: 15px;
  color: #ff5252;
  background-color: #ff52521a;
  border-left: 4px solid #ff5252;
  margin: 10px;
}

.DarkTheme-module__FIN6lW__retryButton {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: #64b5f6;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}

.DarkTheme-module__FIN6lW__logEntry {
  padding: 5px 0;
  border-bottom: 1px solid #3d3d3d;
}

.DarkTheme-module__FIN6lW__logTimestamp {
  color: #90caf9;
  margin-right: 10px;
  font-size: .9em;
}

.DarkTheme-module__FIN6lW__logMessage {
  color: #e0e0e0;
  white-space: pre-wrap;
  word-break: break-word;
}

.DarkTheme-module__FIN6lW__loadingIndicator {
  margin-left: 10px;
  font-size: .9em;
  color: #90caf9;
  font-style: italic;
}

@media (width >= 768px) {
  .DarkTheme-module__FIN6lW__chartsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 1200px) {
  .DarkTheme-module__FIN6lW__chartsContainer {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 768px) {
  .DarkTheme-module__FIN6lW__container {
    padding: 1rem;
  }

  .DarkTheme-module__FIN6lW__title {
    font-size: 2rem;
  }

  .DarkTheme-module__FIN6lW__instanceHeader {
    flex-direction: column;
    align-items: flex-start;
  }

  .DarkTheme-module__FIN6lW__statusBadge {
    margin-top: 10px;
  }
}


/* [project]/src/styles/NodeMetrics.module.css [app-client] (css) */
.NodeMetrics-module__uRkk6W__container {
  padding: 2rem;
  margin: 0;
  width: 100%;
}

.NodeMetrics-module__uRkk6W__chartsContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.NodeMetrics-module__uRkk6W__chartWrapper {
  width: 100%;
  height: 400px;
  background: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000004d;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}

.NodeMetrics-module__uRkk6W__chartHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem .5rem;
  border-bottom: 1px solid #333;
}

.NodeMetrics-module__uRkk6W__chartTitle {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.NodeMetrics-module__uRkk6W__chartControls {
  display: flex;
  gap: .5rem;
}

.NodeMetrics-module__uRkk6W__chartControlButton {
  background: #333;
  color: #d4d4d4;
  border: 1px solid #555;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all .2s;
}

.NodeMetrics-module__uRkk6W__chartControlButton:hover {
  background: #444;
  color: #fff;
  border-color: #666;
}

.NodeMetrics-module__uRkk6W__chartContent {
  flex: 1;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.NodeMetrics-module__uRkk6W__minimizedChart {
  background: #2a2a2a;
  border-radius: 8px;
  border: 1px solid #333;
  margin-bottom: 1rem;
}

.NodeMetrics-module__uRkk6W__minimizedChartHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  color: #d4d4d4;
  font-size: .9rem;
  font-weight: 500;
}

.NodeMetrics-module__uRkk6W__maximizedChart {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #000000e6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.NodeMetrics-module__uRkk6W__maximizedChart .NodeMetrics-module__uRkk6W__chartContent {
  width: 90vw;
  height: 80vh;
  max-width: 1200px;
  max-height: 800px;
}

.NodeMetrics-module__uRkk6W__nodesSection {
  margin-bottom: 3rem;
}

.NodeMetrics-module__uRkk6W__sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #333;
}

.NodeMetrics-module__uRkk6W__sectionTitle {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.NodeMetrics-module__uRkk6W__refreshIndicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4caf50;
  font-size: .9rem;
}

.NodeMetrics-module__uRkk6W__refreshSpinner {
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-top: 2px solid #4caf50;
  border-radius: 50%;
  animation: 1s linear infinite NodeMetrics-module__uRkk6W__spin;
}

.NodeMetrics-module__uRkk6W__nodesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.NodeMetrics-module__uRkk6W__summarySection {
  margin-bottom: 2rem;
}

.NodeMetrics-module__uRkk6W__summaryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.NodeMetrics-module__uRkk6W__summaryCard {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #333;
  transition: transform .2s, box-shadow .2s;
}

.NodeMetrics-module__uRkk6W__summaryCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #0006;
}

.NodeMetrics-module__uRkk6W__summaryValue {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: .5rem;
}

.NodeMetrics-module__uRkk6W__summaryLabel {
  font-size: 1rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .5px;
}

@media (width >= 1024px) {
  .NodeMetrics-module__uRkk6W__chartsContainer {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .NodeMetrics-module__uRkk6W__chartWrapper {
    width: calc(50% - 1rem);
  }

  .NodeMetrics-module__uRkk6W__chartWrapper:last-child {
    width: 100%;
  }
}

@media (width <= 768px) {
  .NodeMetrics-module__uRkk6W__container {
    padding: 1rem;
  }

  .NodeMetrics-module__uRkk6W__chartWrapper {
    height: 300px;
    padding: 1rem;
  }

  .NodeMetrics-module__uRkk6W__nodesGrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .NodeMetrics-module__uRkk6W__summaryGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .NodeMetrics-module__uRkk6W__summaryCard {
    padding: 1.5rem;
  }

  .NodeMetrics-module__uRkk6W__summaryValue {
    font-size: 2rem;
  }

  .NodeMetrics-module__uRkk6W__sectionTitle {
    font-size: 1.5rem;
  }
}

@media (width <= 480px) {
  .NodeMetrics-module__uRkk6W__container {
    padding: .5rem;
  }

  .NodeMetrics-module__uRkk6W__chartWrapper {
    height: 250px;
    padding: .75rem;
  }

  .NodeMetrics-module__uRkk6W__summaryGrid {
    grid-template-columns: 1fr;
  }

  .NodeMetrics-module__uRkk6W__summaryCard {
    padding: 1rem;
  }

  .NodeMetrics-module__uRkk6W__summaryValue {
    font-size: 1.8rem;
  }

  .NodeMetrics-module__uRkk6W__sectionTitle {
    font-size: 1.3rem;
  }
}

.NodeMetrics-module__uRkk6W__chartWrapper {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
}

.NodeMetrics-module__uRkk6W__summaryCard {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
}

.NodeMetrics-module__uRkk6W__loading {
  opacity: .6;
  pointer-events: none;
}

.NodeMetrics-module__uRkk6W__loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #333;
  border-top: 2px solid #4caf50;
  border-radius: 50%;
  animation: 1s linear infinite NodeMetrics-module__uRkk6W__spin;
}

@keyframes NodeMetrics-module__uRkk6W__spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.NodeMetrics-module__uRkk6W__error {
  border-color: #f44336;
  background: #f443361a;
}

.NodeMetrics-module__uRkk6W__errorMessage {
  color: #f44336;
  text-align: center;
  padding: 2rem;
  background: #f443361a;
  border-radius: 8px;
  border: 1px solid #f44336;
  margin: 2rem 0;
}

.NodeMetrics-module__uRkk6W__success {
  border-color: #4caf50;
  background: #4caf501a;
}

.NodeMetrics-module__uRkk6W__warning {
  border-color: #ff9800;
  background: #ff98001a;
}

.NodeMetrics-module__uRkk6W__nodesGrid > * {
  transition: transform .2s ease-in-out;
}

.NodeMetrics-module__uRkk6W__nodesGrid > :hover {
  transform: translateY(-4px);
}

.NodeMetrics-module__uRkk6W__summaryGrid > * {
  transition: all .2s ease-in-out;
}

.NodeMetrics-module__uRkk6W__summaryGrid > :hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px #00000080;
}

.NodeMetrics-module__uRkk6W__chartWrapper:focus-within {
  outline: 2px solid #4caf50;
  outline-offset: 2px;
}

.NodeMetrics-module__uRkk6W__summaryCard:focus-within {
  outline: 2px solid #4caf50;
  outline-offset: 2px;
}

@media print {
  .NodeMetrics-module__uRkk6W__container {
    padding: 0;
  }

  .NodeMetrics-module__uRkk6W__chartWrapper {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    box-shadow: none;
  }

  .NodeMetrics-module__uRkk6W__summaryCard {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    box-shadow: none;
  }

  .NodeMetrics-module__uRkk6W__sectionTitle {
    color: #000;
    border-bottom-color: #ccc;
  }

  .NodeMetrics-module__uRkk6W__summaryValue {
    color: #333;
  }

  .NodeMetrics-module__uRkk6W__summaryLabel {
    color: #666;
  }
}


/*# sourceMappingURL=src_styles_425c50._.css.map*/
