@charset "UTF-8";
.panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.panel-header .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.panel-header .header-left h3 {
  margin: 0;
}
.panel-header .header-left .cluster-totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  color: #8c9296;
  font-size: 0.9em;
}
.panel-header .header-left .cluster-totals strong {
  color: #ffffff;
}

.panel-content {
  margin-top: 16px;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

#clustersContainer .clusters-table {
  width: 100%;
  border-collapse: collapse;
}
#clustersContainer .clusters-table th {
  text-align: left;
  padding: 16px;
  background-color: #151a1f;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#clustersContainer .clusters-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #8c9296;
}
#clustersContainer .clusters-table td.cluster-name {
  color: #ffffff;
}
#clustersContainer .clusters-table td.cluster-name a {
  color: #0088cc;
  text-decoration: none;
}
#clustersContainer .clusters-table td.cluster-name a:hover {
  text-decoration: underline;
}
#clustersContainer .clusters-table .status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.9em;
}
#clustersContainer .clusters-table .status-badge.status-running {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}
#clustersContainer .clusters-table .status-badge.status-starting {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
#clustersContainer .clusters-table .status-badge.status-stopped {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}
#clustersContainer .clusters-table .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
#clustersContainer .clusters-table .action-buttons button {
  padding: 4px 12px;
  border-radius: 3px;
  border: none;
  font-size: 0.9em;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#clustersContainer .clusters-table .action-buttons button.start-button {
  background-color: #28a745;
  color: white;
}
#clustersContainer .clusters-table .action-buttons button.start-button:hover:not(:disabled) {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
#clustersContainer .clusters-table .action-buttons button.stop-button {
  background-color: #dc3545;
  color: white;
}
#clustersContainer .clusters-table .action-buttons button.stop-button:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
#clustersContainer .clusters-table .action-buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.refresh-button {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #0088cc;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.refresh-button::before {
  content: "↻";
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.refresh-button:hover {
  background-color: rgba(0, 136, 204, 0.1);
}
.refresh-button:hover::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#notificationContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
#notificationContainer .notification {
  padding: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
  background-color: #2d343c;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 300px;
}
#notificationContainer .notification.success {
  border-left: 4px solid #28a745;
}
#notificationContainer .notification.error {
  border-left: 4px solid #dc3545;
}
#notificationContainer .notification .close-notification {
  background: none;
  border: none;
  color: #8c9296;
  cursor: pointer;
  padding: 0 4px;
}
#notificationContainer .notification .close-notification:hover {
  color: #ffffff;
}

.log-container {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background-color: #151a1f;
}
.log-container .log-output {
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  font-family: monospace;
  font-size: 0.9em;
  color: #8c9296;
}
.log-container .log-output .log-entry {
  margin-bottom: 4px;
  line-height: 1.4;
}
.log-container .log-output .log-entry .timestamp {
  color: #0088cc;
  margin-right: 8px;
}

.provision-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.provision-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.provision-form .help-text {
  display: block;
  color: #8c9296;
  font-size: 0.9em;
  margin-top: 4px;
}

#clustersContainer .clusters-table td.actions-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
#clustersContainer .clusters-table td.actions-cell .button {
  padding: 4px 8px;
  font-size: 0.9em;
  min-width: 100px;
}
#clustersContainer .clusters-table td.actions-cell .button:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
#clustersContainer .clusters-table td.actions-cell .button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cluster-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.cluster-info-grid .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.cluster-info-grid .info-item .info-label {
  color: #8c9296;
  font-size: 0.9em;
}
.cluster-info-grid .info-item .info-value {
  color: #ffffff;
  font-size: 1.1em;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #8c9296;
}
.form-group select {
  width: 100%;
  padding: 8px;
  background-color: #2d343c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ffffff;
}
.form-group select:focus {
  outline: none;
  border-color: #0088cc;
}

.form-actions {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.form-actions .button {
  min-width: 150px;
}
.form-actions .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.operation-info .cluster-details {
  margin-bottom: 24px;
}
.operation-info .cluster-details p {
  margin: 8px 0;
  color: #ffffff;
}
.operation-info .cluster-details p strong {
  font-weight: 600;
  margin-right: 8px;
}
.operation-info .operation-controls .form-group.horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.operation-info .operation-controls .form-group.horizontal label {
  margin-bottom: 0;
  white-space: nowrap;
}
.operation-info .operation-controls .form-group.horizontal select {
  width: auto;
  min-width: 200px;
}
.operation-info .operation-controls .form-group.horizontal .button {
  margin-left: 16px;
}

.form-group.horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  margin-top: 24px;
}
.form-group.horizontal .select-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.form-group.horizontal .select-container select.compact {
  width: 200px;
}
.form-group.horizontal .button {
  margin-bottom: 1px;
}

.login-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background-color: #1a1a1a;
}
.login-panel.hidden {
  display: none;
}

.login-box {
  background: #2d2d2d;
  padding: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.login-box h2 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.login-box .qumulo-logo {
  display: block;
  margin: 0 auto 1.5rem auto;
  height: auto;
  max-width: 200px;
}

.password-input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 100%;
}

.login-button {
  padding: 8px 16px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.login-button:hover {
  background-color: #0052a3;
}
.login-button:disabled {
  background-color: #404040;
  cursor: not-allowed;
}

.hidden {
  display: none !important;
}

.coming-soon-message {
  text-align: center;
  padding: 40px 20px;
}
.coming-soon-message h2 {
  color: #333;
  margin-bottom: 20px;
}
.coming-soon-message p {
  color: #666;
  font-size: 1.1em;
}

.relationship-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
.relationship-visual .relationship-card {
  background-color: #1c2128;
  border-radius: 4px;
  padding: 16px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.relationship-visual .relationship-card.healthy {
  border-left: 4px solid #4caf50;
}
.relationship-visual .relationship-card.degraded {
  border-left: 4px solid #ff9800;
}
.relationship-visual .relationship-card .relationship-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.relationship-visual .relationship-card .relationship-header .relationship-number {
  font-weight: 600;
  font-size: 1.1rem;
}
.relationship-visual .relationship-card .relationship-header .relationship-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.relationship-visual .relationship-card .relationship-header .relationship-actions .relationship-health {
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 8px;
}
.relationship-visual .relationship-card .relationship-header .relationship-actions .relationship-health.healthy {
  background-color: #4caf50;
  color: white;
}
.relationship-visual .relationship-card .relationship-header .relationship-actions .relationship-health.degraded {
  background-color: #ff9800;
  color: white;
}
.relationship-visual .relationship-card .relationship-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.relationship-visual .relationship-card .relationship-content .hub-side, .relationship-visual .relationship-card .relationship-content .spoke-side {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-label, .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #8c9296;
  margin-bottom: 4px;
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-name, .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-name {
  font-weight: 600;
  font-size: 1.1rem;
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-region, .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-region {
  font-size: 0.8rem;
  color: #8c9296;
  margin-bottom: 4px;
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-path, .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-path {
  font-family: monospace;
  background-color: #252b33;
  padding: 4px;
  border-radius: 3px;
  font-size: 0.8rem;
  word-break: break-all;
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-path.multi-root, .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-path.multi-root {
  margin-bottom: 4px;
  padding: 4px;
  background-color: rgb(41.2886363636, 47.9840909091, 56.9113636364);
  border-left: 3px solid #0088cc;
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-path.multi-root .root-label, .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-path.multi-root .root-label {
  font-weight: 600;
  color: #ffffff;
  margin-right: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-path.multi-root .root-path, .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-path.multi-root .root-path {
  font-family: monospace;
  background-color: rgb(30.5670454545, 35.5238636364, 42.1329545455);
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 0.8rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.relationship-visual .relationship-card .relationship-content .hub-side .cluster-path.multi-root:not(:last-child), .relationship-visual .relationship-card .relationship-content .spoke-side .cluster-path.multi-root:not(:last-child) {
  margin-bottom: 4px;
}
.relationship-visual .relationship-card .relationship-content .relationship-arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 16px;
  font-size: 1.5rem;
  color: #8c9296;
}
.relationship-visual .relationship-card .relationship-content .relationship-arrow.healthy {
  color: #4caf50;
}
.relationship-visual .relationship-card .relationship-content .relationship-arrow.degraded {
  color: #ff9800;
}

.latency-metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 16px;
}
.latency-metrics .latency-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #151a1f;
  border-radius: 4px;
  padding: 4px 8px;
  margin-right: 8px;
}
.latency-metrics .latency-badge .latency-value {
  font-family: monospace;
  font-size: 1rem;
  font-weight: bold;
  color: #0088cc;
}
.latency-metrics .latency-badge .latency-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #8c9296;
}
.latency-metrics .latency-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.75rem;
}
.latency-metrics .latency-details .latency-min-max {
  color: #8c9296;
  font-family: monospace;
}
.latency-metrics .latency-details .latency-samples {
  font-size: 0.65rem;
  color: #8c9296;
  opacity: 0.7;
}

.btn-delete {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  margin-left: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn-delete:hover {
  background-color: rgb(234.1839622642, 27.9622641509, 12.8160377358);
}
.btn-delete:active {
  background-color: rgb(210.0070754717, 25.0754716981, 11.4929245283);
}

@media (max-width: 768px) {
  .relationship-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .relationship-header .relationship-actions {
    margin-top: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .relationship-header .latency-metrics {
    margin-bottom: 8px;
    margin-right: 0;
  }
  .relationship-stats {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .relationship-stats .stat-badge {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100px;
            flex: 1 1 100px;
  }
  .relationship-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .relationship-content .hub-side, .relationship-content .spoke-side {
    width: 100%;
    margin-bottom: 16px;
  }
  .relationship-content .relationship-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: 16px 0;
  }
}
.empty-state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px;
  text-align: center;
  color: #8c9296;
}

.loading-state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px;
}
.loading-state .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 136, 204, 0.2);
  border-top-color: #0088cc;
  border-radius: 50%;
  margin-bottom: 16px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
.loading-state p {
  color: #8c9296;
}

.relationship-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.relationship-stats .stat-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #151a1f;
  border-radius: 4px;
  padding: 4px 8px;
  min-width: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.relationship-stats .stat-badge .stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #8c9296;
  text-align: center;
  line-height: 1;
  margin-bottom: 2px;
}
.relationship-stats .stat-badge .stat-value {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0088cc;
}

.relationship-card.deleted {
  border-left: 4px solid #8c9296;
  opacity: 0.7;
}

.relationship-health.deleted {
  background-color: #8c9296;
  color: white;
}

.relationship-arrow.deleted {
  color: #8c9296;
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 4px;
  color: white;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.notification.success {
  background-color: #4caf50;
}
.notification.error {
  background-color: #f44336;
}
.notification.info {
  background-color: #0088cc;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
}

.eligibility-column {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.eligibility-column .column-header {
  background-color: #151a1f;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.eligibility-column .column-header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
}
.eligibility-column .column-content {
  max-height: 400px;
  overflow-y: auto;
}

.cluster-list .empty-state {
  padding: 16px;
  text-align: center;
  color: #8c9296;
}
.cluster-list .empty-state.error {
  color: #f44336;
}

.cluster-item {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.cluster-item:last-child {
  border-bottom: none;
}
.cluster-item:hover {
  background-color: rgba(21, 26, 31, 0.3);
}
.cluster-item.selected {
  background-color: rgba(0, 136, 204, 0.1);
  border-left: 4px solid #0088cc;
}
.cluster-item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cluster-item.disabled:hover {
  background-color: transparent;
}
.cluster-item .cluster-name {
  font-weight: bold;
  margin-bottom: 4px;
}
.cluster-item .cluster-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4px;
}
.cluster-item .cluster-details .cluster-region {
  color: #8c9296;
  font-size: 0.9rem;
}
.cluster-item .cluster-details .cluster-status {
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 10px;
}
.cluster-item .cluster-details .cluster-status.available {
  background-color: #4caf50;
  color: white;
}
.cluster-item .cluster-details .cluster-status.hub {
  background-color: #0088cc;
  color: white;
}
.cluster-item .cluster-details .cluster-status.ineligible {
  background-color: #f44336;
  color: white;
}
.cluster-item .cluster-details .cluster-status.error {
  background-color: #f44336;
  color: white;
}
.cluster-item .cluster-reason {
  font-size: 0.9rem;
  color: #8c9296;
  margin-bottom: 4px;
}
.cluster-item .cluster-dirs {
  font-size: 0.9rem;
}
.cluster-item .cluster-dirs .dir-count {
  color: #4caf50;
}
.cluster-item .cluster-dirs .dir-count.no-dirs {
  color: #f44336;
}

.portal-config {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.portal-config .config-header {
  background-color: #151a1f;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.portal-config .config-header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
}
.portal-config .config-content {
  padding: 16px;
}
.portal-config .selected-clusters-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background-color: rgba(21, 26, 31, 0.3);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .portal-config .selected-clusters-summary {
    grid-template-columns: 1fr;
  }
}
.portal-config .selected-clusters-summary .selected-cluster .cluster-label {
  font-weight: bold;
  margin-right: 4px;
}
.portal-config .selected-clusters-summary .selected-cluster .cluster-label:after {
  content: " ";
}
.portal-config .selected-clusters-summary .selected-cluster .cluster-region {
  margin-left: 4px;
  color: #8c9296;
}
.portal-config .form-group {
  margin-bottom: 16px;
}
.portal-config .form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
}
.portal-config .form-group select.form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background-color: #1c2128;
}
.portal-config .form-group select.form-control:disabled {
  background-color: #151a1f;
  cursor: not-allowed;
}
.portal-config .config-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}

.log-container {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  max-height: 300px;
}
.log-container .log-output {
  padding: 8px 16px;
  height: 300px;
  overflow-y: auto;
  background-color: #151a1f;
  font-family: monospace;
}
.log-container .log-output .log-entry {
  margin-bottom: 4px;
  line-height: 1.5;
}
.log-container .log-output .log-entry.info .log-message {
  color: #ffffff;
}
.log-container .log-output .log-entry.success .log-message {
  color: #4caf50;
}
.log-container .log-output .log-entry.warning .log-message {
  color: #ff9800;
}
.log-container .log-output .log-entry.error .log-message {
  color: #f44336;
}
.log-container .log-output .log-entry .log-time {
  color: #8c9296;
  margin-right: 4px;
}

.button.primary {
  background-color: #0088cc;
}
.button.primary:disabled {
  background-color: #66ccff;
  cursor: not-allowed;
}
.button.secondary {
  background-color: #8c9296;
}

.filemonitor-container {
  padding: 16px;
}
.filemonitor-container .page-header {
  margin-bottom: 24px;
}
.filemonitor-container .page-header h2 {
  margin: 0 0 4px 0;
  font-size: 1.8rem;
  color: #ffffff;
}
.filemonitor-container .page-header p {
  color: #8c9296;
  margin: 0;
}
.filemonitor-container .panel {
  margin-bottom: 8px;
  background: #1c2128;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.filemonitor-container .panel .panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  background-color: #2d343c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.filemonitor-container .panel .panel-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
}
.filemonitor-container .panel .panel-header .panel-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.filemonitor-container .panel .panel-header .timestamp {
  font-size: 0.85rem;
  color: #8c9296;
}
.filemonitor-container .panel .panel-header .status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.filemonitor-container .panel .panel-header .status-badge.connected {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}
.filemonitor-container .panel .panel-header .status-badge.paused {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.filemonitor-container .panel .panel-header .status-badge.error {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}
.filemonitor-container .panel .panel-header .btn {
  padding: 4px 16px;
  border-radius: 3px;
  background-color: #0088cc;
  color: #ffffff;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 0.9rem;
}
.filemonitor-container .panel .panel-header .btn:hover {
  background-color: #006699;
}
.filemonitor-container .panel .panel-header .btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.filemonitor-container .panel .panel-content {
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  min-height: auto;
}
.filemonitor-container .stats-panel {
  margin-bottom: 4px;
}
.filemonitor-container .stats-panel .panel-content {
  padding-bottom: 8px;
}
.filemonitor-container .stream-panel {
  margin-top: 0;
}
.filemonitor-container .stream-panel .panel-content {
  padding-top: 8px;
}
.filemonitor-container .loading-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  min-height: 5rem;
  color: #8c9296;
  font-style: italic;
}
.filemonitor-container .loading-indicator::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: #0088cc;
  border-radius: 50%;
  margin-right: 8px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
.filemonitor-container .error-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  min-height: 5rem;
  color: #f44336;
}
.filemonitor-container .error-message a {
  margin-left: 4px;
  color: #0088cc;
  text-decoration: underline;
}
.filemonitor-container .error-message a:hover {
  color: #00aaff;
}
.filemonitor-container .hidden {
  display: none;
}
.filemonitor-container .stream-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.filemonitor-container .stream-container .stream-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  max-height: 500px;
}
.filemonitor-container .stream-container .stream-event {
  padding: 8px;
  border-radius: 3px;
  background-color: #252b33;
  border-left: 4px solid rgba(255, 255, 255, 0.1);
  will-change: transform, opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.filemonitor-container .stream-container .stream-event.new-event {
  border-left-color: #0088cc;
  background-color: rgb(30.5670454545, 35.5238636364, 42.1329545455);
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
}
.filemonitor-container .stream-container .stream-event .event-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 16px;
}
.filemonitor-container .stream-container .stream-event .event-header .event-filename {
  font-weight: 500;
  color: #ffffff;
  margin-right: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
.filemonitor-container .stream-container .stream-event .event-header .event-stats {
  font-size: 0.85rem;
  color: #8c9296;
  white-space: nowrap;
}
.filemonitor-container .stream-container .stream-event .event-path {
  font-size: 0.85rem;
  color: #8c9296;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.7;
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.compact-stats {
  padding: 4px 8px !important;
}
.compact-stats .stats-compact-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  height: 160px;
}
.compact-stats .stats-compact-layout .metrics-compact {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
}
.compact-stats .stats-compact-layout .metrics-compact .metric-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  height: calc(50% - 2px);
}
.compact-stats .stats-compact-layout .metrics-compact .metric-row .metric-compact {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #252b33;
  border-radius: 3px;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.compact-stats .stats-compact-layout .metrics-compact .metric-row .metric-compact .metric-label {
  font-size: 0.8rem;
  color: #8c9296;
  margin-bottom: 2px;
  background: none;
}
.compact-stats .stats-compact-layout .metrics-compact .metric-row .metric-compact .metric-value {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  background: none;
}
.compact-stats .stats-compact-layout .latency-chart-compact {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  position: relative;
  border-radius: 3px;
  background-color: #252b33;
  padding: 4px;
}

.environments-table {
  width: 100%;
  border-collapse: collapse;
}
.environments-table th {
  text-align: left;
  padding: 16px;
  background-color: #151a1f;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.environments-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #8c9296;
}
.environments-table td.environment-name {
  color: #ffffff;
  font-weight: 500;
}
.environments-table tr:hover {
  background-color: #252b33;
}
.environments-table .no-environments {
  text-align: center;
  padding: 32px;
  color: #8c9296;
}

.environment-totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  color: #8c9296;
  font-size: 0.9em;
}
.environment-totals strong {
  color: #ffffff;
}

.loading-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px;
  color: #8c9296;
}
.loading-indicator .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top: 4px solid #0088cc;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.back-button {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #8c9296;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.back-button::before {
  content: "←";
  display: inline-block;
}
.back-button:hover {
  background-color: rgba(140, 146, 150, 0.1);
  border-color: #ffffff;
}

.environment-details .details-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.environment-details .details-header .status-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.environment-details .details-header .status-info .status-label {
  color: #8c9296;
}
.environment-details .details-header .environment-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.environment-details .details-header .environment-actions button {
  padding: 6px 16px;
}
.environment-details .details-section {
  margin-bottom: 32px;
}
.environment-details .details-section h4 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}
.environment-details .details-section .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.environment-details .details-section .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.environment-details .details-section .info-item .info-label {
  color: #8c9296;
  font-size: 0.9em;
}
.environment-details .details-section .info-item .info-value {
  color: #ffffff;
}
.environment-details .details-section .environment-description {
  color: #ffffff;
  line-height: 1.5;
}
.environment-details .details-section .no-resources {
  color: #8c9296;
  font-style: italic;
}
.environment-details .resources-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.environment-details .resources-table th {
  text-align: left;
  padding: 8px 16px;
  background-color: #2d343c;
  color: #ffffff;
  font-weight: 500;
  font-size: 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.environment-details .resources-table td {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #8c9296;
}
.environment-details .resources-table tr:hover {
  background-color: #252b33;
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.9em;
}
.status-badge.status-running {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}
.status-badge.status-starting {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.status-badge.status-stopped {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.action-buttons .details-button {
  background-color: #0088cc;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.action-buttons .details-button:hover:not(:disabled) {
  background-color: #006699;
}
.action-buttons .start-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.action-buttons .start-button:hover:not(:disabled) {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
.action-buttons .stop-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.action-buttons .stop-button:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.action-buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
}
.modal-overlay .modal-content {
  background-color: #1c2128;
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
  padding: 24px;
}
.modal-overlay .modal-content h3 {
  margin-top: 0;
  color: #ffffff;
  margin-bottom: 16px;
}
.modal-overlay .modal-content p {
  color: #8c9296;
  margin-bottom: 24px;
}
.modal-overlay .modal-content .modal-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
}
.modal-overlay .modal-content .modal-actions .cancel-button {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #8c9296;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.modal-overlay .modal-content .modal-actions .cancel-button:hover {
  background-color: rgba(140, 146, 150, 0.1);
  border-color: #ffffff;
}

.tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 0.9em;
}

#notificationContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 400px;
}
#notificationContainer .notification {
  padding: 16px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: slide-in 0.3s ease;
          animation: slide-in 0.3s ease;
}
#notificationContainer .notification.fade-out {
  -webkit-animation: slide-out 0.5s ease forwards;
          animation: slide-out 0.5s ease forwards;
}
#notificationContainer .notification .notification-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  line-height: 1;
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#notificationContainer .notification .notification-close:hover {
  opacity: 1;
}
#notificationContainer .notification.success {
  background-color: rgba(40, 167, 69, 0.9);
  color: white;
}
#notificationContainer .notification.error {
  background-color: rgba(220, 53, 69, 0.9);
  color: white;
}
#notificationContainer .notification.info {
  background-color: rgba(33, 150, 243, 0.9);
  color: white;
}
@-webkit-keyframes slide-in {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-out {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes slide-out {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
}

.loadtest-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.test-panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.test-panels .left-panel,
.test-panels .right-panel {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  background: #1c2128;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 24px 16px 24px;
}
@media (max-width: 1100px) {
  .test-panels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .test-panels .left-panel, .test-panels .right-panel {
    padding: 16px;
  }
}

.panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #2d343c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  margin-bottom: 16px;
}
.panel-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
@media (max-width: 800px) {
  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}

.form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.form-group label {
  display: block;
  margin-bottom: 4px;
  color: #8c9296;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 7px 10px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.98rem;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: #0088cc;
  outline: none;
}
.form-group input:disabled, .form-group select:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.btn {
  background: #0088cc;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 0.45em 1.2em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.13s, -webkit-box-shadow 0.13s;
  transition: background 0.13s, -webkit-box-shadow 0.13s;
  transition: background 0.13s, box-shadow 0.13s;
  transition: background 0.13s, box-shadow 0.13s, -webkit-box-shadow 0.13s;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  margin-right: 4px;
}
.btn:hover, .btn:focus {
  background: rgb(0, 108.8, 163.2);
}
.btn:active {
  background: rgb(0, 88.4, 132.6);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.secondary {
  background: #2196f3;
  color: #fff;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: rgb(12.0615384615, 129.6615384615, 223.1384615385);
}
.btn.secondary:active {
  background: rgb(10.4923076923, 112.7923076923, 194.1076923077);
}

.test-selection {
  margin-bottom: 16px;
}
.test-selection label {
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 500;
}
.test-selection select {
  width: 100%;
  margin-bottom: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.97rem;
  padding: 6px 10px;
}

.test-details {
  margin-bottom: 16px;
}
.test-details h3 {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
}
.test-details table {
  width: 100%;
  border-spacing: 0;
}
.test-details table th, .test-details table td {
  text-align: left;
  padding: 4px 8px 4px 0;
  border: none;
  font-size: 0.97rem;
}
.test-details table th {
  color: #0088cc;
  font-weight: bold;
  width: 120px;
}

.instancesSection ul {
  max-height: 120px;
  overflow-y: auto;
  padding: 2px 0 0 8px;
  margin: 0;
  background: rgba(37, 43, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  list-style-type: none;
}
.instancesSection ul li {
  font-size: 0.97rem;
  padding: 4px 0;
  white-space: pre;
  font-family: "Consolas", "Menlo", monospace;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.instancesSection ul li:last-child {
  border-bottom: none;
}

.log-panel {
  margin-top: 16px;
  background: #1c2128;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.log-panel .panel-header {
  background: #2d343c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
}
.log-panel .panel-header h3 {
  font-size: 1.07rem;
  color: #ffffff;
  margin: 0;
}
.log-panel .operation-log {
  background: #151a1f;
  color: #ffffff;
  font-family: "Consolas", "Menlo", monospace;
  font-size: 0.94rem;
  height: 200px;
  overflow-y: auto;
  padding: 0.5em 1em 0.3em 1em;
  border-radius: 3px;
  margin: 0;
  word-break: break-all;
}
.log-panel .operation-log.empty::after {
  content: "No operations logged yet";
  display: block;
  color: #8c9296;
  font-style: italic;
  text-align: center;
  padding: 16px 0;
}

@media (max-width: 900px) {
  .test-panels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .test-panels .left-panel, .test-panels .right-panel {
    width: 100%;
    margin-bottom: 16px;
  }
  .operation-log {
    font-size: 0.91rem;
    height: 38px;
    max-height: 70px;
  }
}
.hidden {
  display: none !important;
}

#testSelect, select#testSelect {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 215px;
  margin-top: 5px;
}
#testSelect option, select#testSelect option {
  color: #111;
  background: #fff;
}

.page-warning-banner {
  background: #2d343c;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 16px 24px;
  margin: 0 0 24px 0;
  font-size: 1.07rem;
  text-align: center;
  font-weight: 400;
  /* Pulse animation (initial) */
  -webkit-animation: warningmessagePulse 1.6s 3;
          animation: warningmessagePulse 1.6s 3;
  /* Style links for better visibility and accessibility */
}
.page-warning-banner a {
  color: #ffffff;
  text-decoration: underline;
}
.page-warning-banner a:hover {
  color: #87ceeb;
  text-decoration: underline;
}
.page-warning-banner a:visited {
  color: #e6e6e6;
}
.page-warning-banner a:active {
  color: #ffffff;
}

/* Keep Note: and region bold */
.page-warning-banner strong,
.page-warning-banner .region-bold {
  font-weight: 600;
}

/* Pulse animation keyframes */
@-webkit-keyframes warningmessagePulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 150, 255, 0.3);
            box-shadow: 0 0 0 0 rgba(50, 150, 255, 0.3);
  }
  40% {
    -webkit-box-shadow: 0 0 0 8px rgba(50, 150, 255, 0.15);
            box-shadow: 0 0 0 8px rgba(50, 150, 255, 0.15);
  }
  80% {
    -webkit-box-shadow: 0 0 0 0px rgba(50, 150, 255, 0.02);
            box-shadow: 0 0 0 0px rgba(50, 150, 255, 0.02);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0px rgba(50, 150, 255, 0);
            box-shadow: 0 0 0 0px rgba(50, 150, 255, 0);
  }
}
@keyframes warningmessagePulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 150, 255, 0.3);
            box-shadow: 0 0 0 0 rgba(50, 150, 255, 0.3);
  }
  40% {
    -webkit-box-shadow: 0 0 0 8px rgba(50, 150, 255, 0.15);
            box-shadow: 0 0 0 8px rgba(50, 150, 255, 0.15);
  }
  80% {
    -webkit-box-shadow: 0 0 0 0px rgba(50, 150, 255, 0.02);
            box-shadow: 0 0 0 0px rgba(50, 150, 255, 0.02);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0px rgba(50, 150, 255, 0);
            box-shadow: 0 0 0 0px rgba(50, 150, 255, 0);
  }
}
.loading-message {
  text-align: center;
  padding: 20px;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.time-display {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.user-email {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logout-button {
  padding: 6px 12px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.logout-button:hover {
  background-color: #0052a3;
}
.logout-button:disabled {
  background-color: #404040;
  cursor: not-allowed;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background-color: #1c2128;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.container {
  padding: 16px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}

.nav-bar {
  background-color: #1e2429;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-bar .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.nav-bar .nav-link {
  display: inline-block;
  padding: 16px 24px;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav-bar .nav-link:hover {
  background-color: rgb(40.7746478873, 48.9295774648, 55.7253521127);
}
.nav-bar .nav-item.dropdown {
  position: relative;
}
.nav-bar .nav-item.dropdown.active .nav-link {
  background-color: #0088cc;
}
.nav-bar .nav-item.dropdown .nav-link {
  background-color: transparent;
}
.nav-bar .nav-item.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e2429;
  min-width: 200px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.nav-bar .nav-item.dropdown .dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav-bar .nav-item.dropdown .dropdown-content a:hover {
  background-color: rgb(40.7746478873, 48.9295774648, 55.7253521127);
}
.nav-bar .nav-item.dropdown:hover .dropdown-content {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
table th {
  background-color: #2d343c;
  text-align: left;
  padding: 16px;
  font-weight: 500;
  color: #ffffff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #8c9296;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
table tr {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
table tr:hover {
  background-color: #252b33;
}

.button {
  background-color: #0088cc;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.button:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button.secondary {
  background-color: transparent;
  border: 1px solid #0088cc;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button.secondary:hover {
  background-color: rgba(0, 136, 204, 0.1);
  border-color: #00aaff;
}
.button.danger {
  background-color: #dc3545;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button.danger:hover {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}

.return-button {
  margin-top: 16px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}

.form-group {
  margin-bottom: 16px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #8c9296;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 8px;
  background-color: #2d343c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
  background-color: rgb(49.3714285714, 57.0514285714, 65.8285714286);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #0088cc;
  background-color: rgb(55.9285714286, 64.6285714286, 74.5714285714);
  -webkit-box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.2);
          box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.2);
}

.panel {
  background-color: #2d343c;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.panel .panel-header {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2em;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.status:hover {
  opacity: 0.8;
}
.status.success {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}
.status.warning {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.status.error {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mt-md {
  margin-top: 16px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}

.mb-md {
  margin-bottom: 16px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}

.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn 0.3s ease forwards;
          animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-header {
  background-color: #151a1f;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.qumulo-logo {
  height: 24px;
  width: auto;
}

.header-title {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 500;
}

.header-right {
  color: #8c9296;
}

.nav-bar {
  background-color: #1e2429;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav-link:hover {
  background-color: rgba(0, 136, 204, 0.1);
}
.nav-link.active {
  background-color: #0088cc;
  color: #ffffff;
}/*# sourceMappingURL=main.css.map */