.screensaver-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.screensaver-content {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 320px;
  height: auto;
}

.screensaver-logo {
  width: 160px;
  height: auto;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screensaver-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.status-message {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  opacity: 0.8;
  font-weight: 500;
}


.device-details {
  margin: 15px 0 0 0;
  text-align: left;
  width: 100%;
}

.detail-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.detail-row.triple {
  gap: 4px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #4CAF50;
  flex: 1;
}

.detail-item.full-width {
  margin-bottom: 8px;
  padding: 8px 12px;
}

.detail-item.compact {
  padding: 5px 8px;
  font-size: 13px;
}

.detail-item.compact.vertical {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 6px;
}

.detail-item.compact .label {
  min-width: 50px;
  font-size: 12px;
}

.detail-item.compact.vertical .label {
  min-width: auto;
  font-size: 11px;
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-item.compact .value {
  font-size: 12px;
}

.detail-item.compact.vertical .value {
  font-size: 11px;
  font-weight: bold;
}

.detail-item.debug-info {
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(255, 165, 0, 0.1);
  border-left: 3px solid #FFA500;
}

.detail-item.debug-info .label {
  color: #FFA500;
  font-weight: 600;
  font-size: 11px;
}

.detail-item.debug-info .value {
  color: #FFD700;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: bold;
}

.detail-item .label {
  color: #ccc;
  font-weight: 500;
  min-width: 80px;
}

.detail-item .value {
  color: #4CAF50;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  cursor: pointer;
}

.detail-item .value:hover {
  color: #4CAF50;
  text-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .screensaver-content {
    padding: 20px;
    max-width: 90vw;
  }
  
  .screensaver-content h2 {
    font-size: 24px;
  }
  
  .screensaver-logo {
    width: 80px;
  }
  
  .screensaver-logo img {
    height: 60px;
  }
}

@media (max-height: 600px) {
  .screensaver-content {
    padding: 15px;
  }
  
  .screensaver-logo {
    width: 60px;
    margin-bottom: 15px;
  }
  
  .screensaver-logo img {
    height: 50px;
  }
  
  .screensaver-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}