#aes-scoper-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.aes-scoper-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 20px;
}

.aes-scoper-header h2 {
  color: #0073aa;
  font-size: 28px;
  margin: 0 0 10px 0;
}

.aes-scoper-header p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.aes-scoper-form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 200px 150px;
  gap: 15px;
  align-items: flex-end;
}

.aes-input-group {
  display: flex;
  flex-direction: column;
}

.aes-input-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 13px;
}

.aes-input-group input,
.aes-input-group select {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

.aes-input-group input:focus,
.aes-input-group select:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.aes-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aes-btn-primary {
  background: #0073aa;
  color: white;
}

.aes-btn-primary:hover {
  background: #005a87;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 115, 170, 0.2);
}

.aes-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.aes-btn-small {
  padding: 6px 12px;
  font-size: 12px;
  background: #f0f0f0;
  color: #333;
}

.aes-btn-small:hover {
  background: #e0e0e0;
}

.aes-status {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease;
}

.aes-status.loading {
  background: #e7f3ff;
  color: #0073aa;
  border-left: 4px solid #0073aa;
}

.aes-status.error {
  background: #fee;
  color: #c00;
  border-left: 4px solid #c00;
}

.aes-status.success {
  background: #efe;
  color: #060;
  border-left: 4px solid #060;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aes-spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.aes-results {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aes-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.aes-results-header h3 {
  margin: 0;
  color: #333;
}

.aes-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.aes-stat {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #0073aa;
}

.aes-stat-value {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #0073aa;
  margin-bottom: 5px;
}

.aes-stat-label {
  display: block;
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.aes-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.aes-tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  font-size: 14px;
  transition: all 0.2s ease;
}

.aes-tab-btn.active {
  color: #0073aa;
  border-bottom-color: #0073aa;
}

.aes-tab-btn:hover {
  color: #0073aa;
}

.aes-tab-content {
  display: none;
}

.aes-tab-content.active {
  display: block;
}

.aes-endpoint-item {
  padding: 15px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid #0073aa;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 12px;
}

.aes-endpoint-item .aes-method {
  display: inline-block;
  padding: 2px 8px;
  background: #0073aa;
  color: white;
  border-radius: 3px;
  font-weight: bold;
  margin-right: 10px;
  font-size: 11px;
}

.aes-endpoint-item .aes-method.get {
  background: #0073aa;
}

.aes-endpoint-item .aes-method.post {
  background: #d64545;
}

.aes-endpoint-item .aes-url {
  word-break: break-all;
  color: #333;
}

.aes-endpoint-item .aes-status-code {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  background: #eee;
  border-radius: 3px;
  font-size: 11px;
  color: #666;
}

.aes-empty {
  text-align: center;
  padding: 40px;
  color: #999;
}

@media (max-width: 768px) {
  .aes-scoper-form {
    grid-template-columns: 1fr;
  }

  .aes-stats {
    grid-template-columns: 1fr;
  }
}
