/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* CSS Custom Properties for Theming */
:root {
  /* Light theme colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border-color: #dee2e6;
  --shadow-primary: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-secondary: 0 4px 8px rgba(0, 0, 0, 0.15);
  /* Brand colors */
  --color-primary: #007cba;
  --color-primary-hover: #005a87;
  --color-secondary: #6c757d;
  --color-secondary-hover: #545b62;
  --color-success: #28a745;
  --color-success-hover: #218838;
  --color-danger: #dc3545;
  --color-danger-hover: #c82333;
  --color-warning: #ffc107;
  --color-warning-hover: #e0a800;
  --color-info: #17a2b8;
  --color-info-hover: #138496;
  /* Status message colors */
  --status-success-bg: #d4edda;
  --status-success-text: #155724;
  --status-success-border: #c3e6cb;
  --status-error-bg: #f8d7da;
  --status-error-text: #721c24;
  --status-error-border: #f5c6cb;
  --status-warning-bg: #fff3cd;
  --status-warning-text: #856404;
  --status-warning-border: #ffeaa7;
  --status-info-bg: #d1ecf1;
  --status-info-text: #0c5460;
  --status-info-border: #bee5eb;
}

/* Dark theme colors */
[data-theme=dark] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-tertiary: #404040;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border-color: #404040;
  --shadow-primary: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-secondary: 0 4px 8px rgba(0, 0, 0, 0.4);
  /* Status message colors for dark theme */
  --status-success-bg: #1e3a1e;
  --status-success-text: #a3d9a3;
  --status-success-border: #2d5a2d;
  --status-error-bg: #3a1e1e;
  --status-error-text: #f5b5b5;
  --status-error-border: #5a2d2d;
  --status-warning-bg: #3a3a1e;
  --status-warning-text: #f5f5a3;
  --status-warning-border: #5a5a2d;
  --status-info-bg: #1e3a3a;
  --status-info-text: #a3d9d9;
  --status-info-border: #2d5a5a;
}

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

* {
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
  padding: 20px;
}

/* Form Styles */
.form-section {
  background: var(--bg-primary);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-primary);
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.form-section h2, .form-section h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.form-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.form-field.required label::after {
  content: " *";
  color: var(--color-danger);
}

.form-field input {
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.form-field input:read-only {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
}

/* Button Styles */
.button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

button {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

button:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

button.secondary {
  background: var(--color-secondary);
}

button.secondary:hover {
  background: var(--color-secondary-hover);
}

button.danger {
  background: var(--color-danger);
}

button.danger:hover {
  background: var(--color-danger-hover);
}

button.success {
  background: var(--color-success);
}

button.success:hover {
  background: var(--color-success-hover);
}

button.warning {
  background: var(--color-warning);
  color: #212529;
}

button.warning:hover {
  background: var(--color-warning-hover);
}

/* Status Messages */
.status-message {
  padding: 10px;
  border-radius: 4px;
  margin: 10px 0;
  font-size: 14px;
  border: 1px solid;
  transition: all 0.3s ease;
}

.status-message.success {
  background: var(--status-success-bg);
  color: var(--status-success-text);
  border-color: var(--status-success-border);
}

.status-message.error {
  background: var(--status-error-bg);
  color: var(--status-error-text);
  border-color: var(--status-error-border);
}

.status-message.loading {
  background: var(--status-warning-bg);
  color: var(--status-warning-text);
  border-color: var(--status-warning-border);
}

.status-message.info {
  background: var(--status-info-bg);
  color: var(--status-info-text);
  border-color: var(--status-info-border);
}

/* Content Viewer */
.content-viewer {
  background: var(--bg-primary);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-primary);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.iframe-container {
  width: 100%;
  height: 600px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

/* URL Display */
.url-display {
  margin: 15px 0;
}

.url-display label {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-primary);
  display: block;
}

.url-input-group {
  display: flex;
  gap: 5px;
}

.url-display input {
  flex: 1;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 12px;
  font-family: "Courier New", monospace;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
}

/* Token Section */
.token-section {
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.token-section h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.token-buttons button {
  font-size: 12px;
  padding: 6px 12px;
}

/* Dark mode specific enhancements */
[data-theme=dark] {
  /* Scrollbar styling for dark mode */
}
[data-theme=dark] .iframe-container {
  filter: brightness(0.9);
}
[data-theme=dark] input::placeholder {
  color: var(--text-muted);
}
[data-theme=dark] ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
[data-theme=dark] ::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
[data-theme=dark] ::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}
[data-theme=dark] ::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* Smooth transitions for theme switching */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-group {
    grid-template-columns: 1fr;
  }
  .button-group {
    flex-direction: column;
  }
  .url-input-group {
    flex-direction: column;
  }
  .container {
    padding: 10px;
  }
}

/*# sourceMappingURL=styles.f3b492879a15cd91.css.map*/