/* [project]/src/styles/Home.module.css [app-client] (css) */
.Home-module__Ho9lYW__container {
  padding: 2rem;
  margin: 0 auto;
}

.Home-module__Ho9lYW__chartsContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.Home-module__Ho9lYW__chartWrapper {
  width: 100%;
  height: 400px;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
}

.Home-module__Ho9lYW__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.Home-module__Ho9lYW__podCard {
  padding: 1rem;
  border: 2px solid;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s;
}

.Home-module__Ho9lYW__podCard:hover {
  transform: translateY(-2px);
}

.Home-module__Ho9lYW__status {
  font-weight: bold;
  color: #4caf50;
}

.Home-module__Ho9lYW__high {
  color: #f44336;
}

.Home-module__Ho9lYW__normal {
  color: #2196f3;
}

.Home-module__Ho9lYW__low {
  color: #ff0;
}

.Home-module__Ho9lYW__critical {
  color: red;
}

@media (width >= 1024px) {
  .Home-module__Ho9lYW__chartsContainer {
    flex-direction: row;
  }

  .Home-module__Ho9lYW__chartWrapper {
    width: 50%;
  }
}

.Home-module__Ho9lYW__footer {
  margin-top: 40px;
  padding: 20px;
}

.Home-module__Ho9lYW__backLink {
  margin-bottom: 20px;
}

.Home-module__Ho9lYW__backLink a {
  display: inline-flex;
  align-items: center;
  color: #0070f3;
  text-decoration: none;
}

.Home-module__Ho9lYW__backLink a:hover {
  text-decoration: underline;
}

.Home-module__Ho9lYW__metricsSection {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
}

.Home-module__Ho9lYW__instancesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.Home-module__Ho9lYW__instanceCard {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 2px 4px #0000000d;
  transition: transform .2s, box-shadow .2s;
}

.Home-module__Ho9lYW__instanceCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px #0000001a;
}

.Home-module__Ho9lYW__instanceDetails {
  font-size: 14px;
}

.Home-module__Ho9lYW__instanceDetails p {
  margin: 8px 0;
}

.Home-module__Ho9lYW__running {
  color: #3cb371;
  font-weight: bold;
}

.Home-module__Ho9lYW__stopping, .Home-module__Ho9lYW__pending {
  color: #f90;
  font-weight: bold;
}

.Home-module__Ho9lYW__stopped, .Home-module__Ho9lYW__terminated {
  color: #dc3545;
  font-weight: bold;
}

.Home-module__Ho9lYW__errorMessage {
  color: #dc3545;
  padding: 15px;
  background-color: #ffecec;
  border-radius: 5px;
  margin-top: 20px;
}

.Home-module__Ho9lYW__comingSoon {
  margin-top: 30px;
  padding: 20px;
  background-color: #f0f8ff;
  border-radius: 8px;
  border-left: 4px solid #0070f3;
}

.Home-module__Ho9lYW__comingSoon ul {
  margin-top: 10px;
  padding-left: 20px;
}

.Home-module__Ho9lYW__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #333;
}

.Home-module__Ho9lYW__headerLeft {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Home-module__Ho9lYW__header h1 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.Home-module__Ho9lYW__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Home-module__Ho9lYW__namespaceFilter {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.Home-module__Ho9lYW__namespaceFilter label {
  color: #ccc;
  font-size: .9rem;
  font-weight: 600;
}

.Home-module__Ho9lYW__namespaceSelect {
  padding: .5rem 1rem;
  border: 2px solid #555;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
}

.Home-module__Ho9lYW__namespaceSelect:hover {
  border-color: #0070f3;
}

.Home-module__Ho9lYW__namespaceSelect:focus {
  outline: none;
  border-color: #0070f3;
  box-shadow: 0 0 0 3px #0070f31a;
}

.Home-module__Ho9lYW__refreshIndicator {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #0070f3;
  font-size: .9rem;
  font-weight: 600;
  background: #000c;
  padding: .5rem 1rem;
  border-radius: 6px;
  border: 1px solid #333;
  animation: 2s infinite Home-module__Ho9lYW__pulse;
}

@keyframes Home-module__Ho9lYW__pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }

  100% {
    opacity: 1;
  }
}

.Home-module__Ho9lYW__loadingSpinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  font-size: 1.2rem;
  color: #ccc;
}

.Home-module__Ho9lYW__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;
}

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

.Home-module__Ho9lYW__chartHeader h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.Home-module__Ho9lYW__chartControls {
  display: flex;
  gap: .5rem;
}

.Home-module__Ho9lYW__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;
}

.Home-module__Ho9lYW__chartControlButton:hover {
  background: #444;
  color: #fff;
  border-color: #666;
}

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

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

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

.Home-module__Ho9lYW__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;
}

.Home-module__Ho9lYW__maximizedChart .Home-module__Ho9lYW__chartContent {
  width: 90vw;
  height: 80vh;
  max-width: 1200px;
  max-height: 800px;
}

@media (width >= 1024px) {
  .Home-module__Ho9lYW__chartsContainer {
    flex-direction: row;
  }

  .Home-module__Ho9lYW__chartWrapper {
    width: 50%;
  }
}


/* [project]/src/styles/PodCard.module.css [app-client] (css) */
.PodCard-module__V5RTQG__podCard {
  padding: 1.5rem;
  border: 2px solid;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  font-size: .9rem;
  overflow-x: hidden;
  box-shadow: 0 4px 12px #0000004d;
}

@keyframes PodCard-module__V5RTQG__glowPulse {
  0% {
    box-shadow: 0 0 15px #ffff0199;
  }

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

  100% {
    box-shadow: 0 0 15px #ffff0199;
  }
}

@keyframes PodCard-module__V5RTQG__glowSigKill {
  0% {
    box-shadow: 0 0 15px #f009;
  }

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

  100% {
    box-shadow: 0 0 15px #f009;
  }
}

.PodCard-module__V5RTQG__podCard:hover {
  transform: translateY(-2px);
}

.PodCard-module__V5RTQG__status {
  font-weight: bold;
  color: #4caf50;
}

.PodCard-module__V5RTQG__high {
  color: #f44336;
}

.PodCard-module__V5RTQG__normal {
  color: #2196f3;
}

.PodCard-module__V5RTQG__low {
  color: #ff0;
}

.PodCard-module__V5RTQG__critical {
  color: red;
}

.PodCard-module__V5RTQG__logButton {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: .5rem 1rem;
  background-color: #2196f3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
}

.PodCard-module__V5RTQG__logButton:hover:not(:disabled) {
  background-color: #1976d2;
}

.PodCard-module__V5RTQG__logButton:active:not(:disabled) {
  background-color: #1565c0;
}

.PodCard-module__V5RTQG__logButton:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.PodCard-module__V5RTQG__eventButton {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: .5rem 1rem;
  background-color: #2196f3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
}

.PodCard-module__V5RTQG__eventButton:hover:not(:disabled) {
  background-color: #1976d2;
}

.PodCard-module__V5RTQG__eventButton:active:not(:disabled) {
  background-color: #1565c0;
}

.PodCard-module__V5RTQG__eventButton:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.PodCard-module__V5RTQG__loading {
  opacity: .7;
}

.PodCard-module__V5RTQG__podHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.PodCard-module__V5RTQG__podTitle h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.PodCard-module__V5RTQG__podNamespace {
  font-size: .75rem;
  color: #888;
  margin-top: .25rem;
}

.PodCard-module__V5RTQG__statusBadge {
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.PodCard-module__V5RTQG__healthScore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: .75rem;
  background: #ffffff0d;
  border-radius: 8px;
}

.PodCard-module__V5RTQG__healthLabel {
  font-size: .8rem;
  color: #ccc;
}

.PodCard-module__V5RTQG__healthValue {
  font-size: 1.1rem;
  font-weight: 700;
}

.PodCard-module__V5RTQG__metricsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}

.PodCard-module__V5RTQG__metricItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  background: #ffffff08;
  border-radius: 6px;
}

.PodCard-module__V5RTQG__metricLabel {
  font-size: .8rem;
  color: #aaa;
}

.PodCard-module__V5RTQG__metricValue {
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
}

.PodCard-module__V5RTQG__podDetails {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .75rem;
  background: #ffffff08;
  border-radius: 8px;
}

.PodCard-module__V5RTQG__podDetail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.PodCard-module__V5RTQG__detailLabel {
  font-size: .8rem;
  color: #aaa;
}

.PodCard-module__V5RTQG__detailValue {
  font-size: .85rem;
  color: #fff;
}

.PodCard-module__V5RTQG__lastLog {
  margin-bottom: 1rem;
  padding: .75rem;
  background: #ffffff08;
  border-radius: 8px;
}

.PodCard-module__V5RTQG__logLabel {
  display: block;
  font-size: .8rem;
  color: #aaa;
  margin-bottom: .5rem;
}

.PodCard-module__V5RTQG__logMessage {
  font-size: .8rem;
  color: #fff;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.PodCard-module__V5RTQG__actions {
  display: flex;
  gap: .75rem;
  justify-content: space-between;
}

.PodCard-module__V5RTQG__actionButton {
  flex: 1;
  padding: .75rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
}

.PodCard-module__V5RTQG__logsButton {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.PodCard-module__V5RTQG__logsButton:hover:not(:disabled) {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  transform: translateY(-1px);
}

.PodCard-module__V5RTQG__logsButton:active:not(:disabled) {
  transform: translateY(0);
}

.PodCard-module__V5RTQG__logsButton:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
}


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