:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --success: #16a34a;
  --danger: #dc2626;
  --warning: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --wordpress-color: #21759b;
  --nodejs-color: #339933;
  --nextjs-color: #000000;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--gray-100);
  color: var(--gray-900);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
}

header p {
  color: var(--gray-500);
}

.back-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
}

.back-link:hover {
  text-decoration: underline;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
}

.btn-secondary:hover {
  background: var(--gray-300);
}

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

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

.btn-danger:hover {
  background: #b91c1c;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  cursor: pointer;
}

/* Actions bar */
.actions {
  margin-bottom: 2rem;
}

/* Sites grid */
.sites-list h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.empty-state {
  text-align: center;
  color: var(--gray-500);
  padding: 3rem;
  background: white;
  border-radius: 0.5rem;
}

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

.site-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-left: 4px solid var(--gray-300);
}

.site-card.site-wordpress {
  border-left-color: var(--wordpress-color);
}

.site-card.site-nodejs {
  border-left-color: var(--nodejs-color);
}

.site-card.site-nextjs {
  border-left-color: var(--nextjs-color);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.site-type {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.site-type.wordpress {
  background: #e0f2fe;
  color: var(--wordpress-color);
}

.site-type.nodejs {
  background: #dcfce7;
  color: var(--nodejs-color);
}

.site-type.nextjs {
  background: #f3f4f6;
  color: var(--nextjs-color);
}

.site-owner {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.site-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.site-url {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.site-url a {
  color: var(--primary);
  text-decoration: none;
}

.site-url a:hover {
  text-decoration: underline;
}

.site-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* PM2 Status */
.pm2-status {
  background: var(--gray-50);
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin-top: 0.75rem;
}

.status-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-badge.online {
  background: #dcfce7;
  color: #166534;
}

.status-badge.stopped {
  background: #fee2e2;
  color: #991b1b;
}

.status-badge.errored {
  background: #fef3c7;
  color: #92400e;
}

.pm2-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* Forms */
.form-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.type-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.type-option {
  cursor: pointer;
}

.type-option input {
  display: none;
}

.type-card {
  padding: 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s;
}

.type-option input:checked + .type-card {
  border-color: var(--primary);
  background: #eff6ff;
}

.type-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.5rem;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.type-card span {
  display: block;
  font-weight: 500;
}

.type-card small {
  color: var(--gray-500);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Detail page */
.detail-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
}

.detail-header {
  background: var(--gray-50);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-section {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.detail-section:last-child {
  border-bottom: none;
}

.detail-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.info-table {
  width: 100%;
}

.info-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.info-table td:first-child {
  color: var(--gray-500);
  width: 150px;
}

.info-table code {
  background: var(--gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.danger-zone {
  background: #fef2f2;
}

.danger-zone h3 {
  color: var(--danger);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
  margin-bottom: 1rem;
  color: var(--danger);
}

.modal-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.modal-content .form-group {
  margin-bottom: 1.5rem;
}

.modal-content .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.modal-content .form-group input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
}

.modal-content .form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.warning-text {
  color: var(--danger);
  font-size: 0.8rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.modal-actions .btn {
  min-width: 100px;
}

#confirm-delete-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Header Navigation */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.header-nav {
  display: flex;
  gap: 0.5rem;
}

.header-nav .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-active {
  background: var(--primary);
  color: white;
}

/* Actions with filters */
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filters {
  display: flex;
  gap: 0.5rem;
}

.filters .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.resource-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.resource-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.resource-card.resource-theme {
  border-top: 3px solid #9b59b6;
}

.resource-card.resource-plugin {
  border-top: 3px solid #3498db;
}

.resource-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.resource-type {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.resource-type.theme {
  background: #f3e5f5;
  color: #9b59b6;
}

.resource-type.plugin {
  background: #e3f2fd;
  color: #3498db;
}

.resource-uploader {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.resource-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.resource-version {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.resource-description {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.resource-actions {
  display: flex;
  gap: 0.5rem;
}

.resource-actions .btn {
  flex: 1;
  text-align: center;
}

/* File Upload Area */
.file-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.file-upload-area:hover,
.file-upload-area.highlight {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.file-upload-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-text,
.file-selected {
  pointer-events: none;
}

.file-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.file-upload-text p,
.file-selected p {
  margin: 0.5rem 0;
  color: var(--gray-700);
}

.file-upload-text small,
.file-selected small {
  color: var(--gray-500);
}

.file-selected {
  color: var(--success);
}

/* Upload Progress */
.upload-progress {
  margin-top: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s;
}

.upload-progress p {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Textarea */
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Button success */
.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover {
  background: #15803d;
}

/* Resources Section in Create Form */
.resources-section {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

.resources-section h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--gray-700);
}

.resource-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.resource-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
}

.resource-checkbox:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.02);
}

.resource-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.resource-checkbox input[type="checkbox"]:checked + .resource-info strong {
  color: var(--primary);
}

.resource-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resource-info strong {
  color: var(--gray-900);
}

.resource-info small {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.empty-resources {
  text-align: center;
  color: var(--gray-500);
  padding: 1rem;
}

.empty-resources a {
  color: var(--primary);
}

/* Login Page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
}

.login-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h1 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.login-header p {
  color: var(--gray-500);
}

.login-form .form-group {
  margin-bottom: 1.5rem;
}

.login-form .btn-block {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
}

.login-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.password-requirements {
  background: var(--gray-50);
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.password-requirements p {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.password-requirements ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-600);
}

.password-requirements ul li {
  margin-bottom: 0.25rem;
}

/* User Info in Header */
.user-info {
  color: var(--gray-600);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  background: var(--gray-100);
  border-radius: 0.375rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.data-table th,
.data-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.data-table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover {
  background: var(--gray-50);
}

.actions-cell {
  white-space: nowrap;
}

.actions-cell .btn-sm {
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-primary {
  background: var(--primary);
  color: white;
}

.badge-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

.text-muted {
  color: var(--gray-500);
  font-style: italic;
}

/* Users list */
.users-list {
  margin-top: 1rem;
}

/* =====================
   Guide Page
   ===================== */
.guides-section {
  margin-top: 1.5rem;
}

.guides-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.guides-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.guide-card-open {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.guide-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  background: var(--gray-50);
  transition: background 0.15s;
}

.guide-card-header:hover {
  background: #f0f4ff;
}

.guide-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guide-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.guide-card-title h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.guide-meta {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.guide-toggle-icon {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.guide-content {
  padding: 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}

/* Prerequisites box */
.guide-prerequisites {
  background: #f8faff;
  border: 1px solid #dbeafe;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.guide-prerequisites h4 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e40af;
}

.guide-prerequisites ul {
  margin: 0;
  padding-left: 1.25rem;
}

.guide-prerequisites li {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

/* Method block */
.guide-method {
  margin-bottom: 2rem;
}

.guide-method-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.guide-method-badge {
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--gray-200);
  color: var(--gray-600);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}

.guide-method-fast {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.guide-method-badge-fast {
  background: #fde68a;
  color: #92400e;
}

/* Step */
.guide-step {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--gray-200);
}

.guide-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.guide-step-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.guide-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.guide-step p,
.guide-method > p {
  font-size: 0.88rem;
  color: var(--gray-700);
  margin: 0.4rem 0;
  line-height: 1.6;
}

.guide-step ul {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding-left: 1.25rem;
  margin: 0.4rem 0;
}

.guide-step li {
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

/* Code blocks */
.guide-code {
  background: #1e1e2e;
  color: #cdd6f4;
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  overflow-x: auto;
  margin: 0.5rem 0;
  white-space: pre;
}

.guide-code-output {
  background: #1a1a2e;
  color: #a6e3a1;
}

.guide-code .code-comment {
  color: #6c7086;
  font-style: italic;
}

/* Notes */
.guide-note {
  font-size: 0.82rem !important;
  color: var(--gray-500) !important;
  font-style: italic;
  margin-top: 0.4rem !important;
}

.guide-note-success {
  color: #166534 !important;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-style: normal !important;
  font-weight: 500;
}
