/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap");
/* CSS Custom Properties for Theming */
/* line 23, app/assets/stylesheets/admin.scss */
:root {
  /* Bootstrap Table Variables */
  /* Dark Theme Variables */
  --admin-bg-primary: #1a1a1a;
  --admin-bg-secondary: #2d2d2d;
  --admin-bg-accent: rgba(45, 45, 45, 0.8);
  --admin-text-primary: #e0e0e0;
  --admin-text-secondary: rgba(255, 255, 255, 0.8);
  --admin-text-muted: #aaa;
  --admin-border-color: rgba(255, 255, 255, 0.2);
  --admin-shadow: rgba(0, 0, 0, 0.3);
  --admin-shadow-light: rgba(0, 0, 0, 0.2);
  --admin-hover-bg: rgba(255, 255, 255, 0.1);
  --admin-active-bg: rgba(255, 255, 255, 0.15);
  --admin-card-bg: #2d2d2d;
  --admin-table-stripe: rgba(255, 255, 255, 0.05);
  --admin-table-hover: rgba(255, 255, 255, 0.1);
  /* Bootstrap Table Variables for Dark Mode */
  --bs-table-bg: #2d2d2d;
  --bs-table-color: #e0e0e0;
  --bs-table-border-color: rgba(255, 255, 255, 0.2);
  --bs-table-accent-bg: rgba(255, 255, 255, 0.05);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-hover-bg: rgba(255, 255, 255, 0.1);
}

/* line 76, app/assets/stylesheets/admin.scss */
body {
  background-color: var(--admin-bg-primary);
  color: var(--admin-text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* line 82, app/assets/stylesheets/admin.scss */
h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0rem;
}

/* line 88, app/assets/stylesheets/admin.scss */
h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0rem;
}

/* line 94, app/assets/stylesheets/admin.scss */
h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  margin-top: 0.4rem;
}

/* line 101, app/assets/stylesheets/admin.scss */
a {
  text-decoration: none;
  color: inherit;
}

/* line 106, app/assets/stylesheets/admin.scss */
.btn {
  border-radius: 13px;
}

/* line 110, app/assets/stylesheets/admin.scss */
.btn-primary {
  background-color: #5c01ef;
  border-color: #5c01ef;
}

/* line 115, app/assets/stylesheets/admin.scss */
.bg-primary {
  background-color: #5c01ef !important;
}

/* line 119, app/assets/stylesheets/admin.scss */
.btn-primary:hover {
  background-color: #4c01c2;
  border-color: #4c01c2;
}

/* line 124, app/assets/stylesheets/admin.scss */
.btn-success {
  background-color: #12a580;
  border-color: #12a580;
}

/* line 129, app/assets/stylesheets/admin.scss */
.btn-success:hover {
  background-color: #0f8a6e;
  border-color: #0f8a6e;
}

/* line 134, app/assets/stylesheets/admin.scss */
.bg-dark {
  background-color: rgba(6, 9, 19, 0.8) !important;
  backdrop-filter: blur(10px);
}

/* Table styles that look like Tailwind */
/* line 140, app/assets/stylesheets/admin.scss */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--admin-text-primary);
  border-collapse: collapse;
  border-radius: 13px;
  overflow: hidden;
  background-color: var(--admin-card-bg);
  outline: 1px solid var(--admin-border-color);
}

/* Fix Bootstrap table cell styling */
/* line 152, app/assets/stylesheets/admin.scss */
.table > :not(caption) > * > * {
  background-color: var(--bs-table-bg);
  border-bottom-color: var(--bs-table-border-color);
  color: var(--bs-table-color);
}

/* line 158, app/assets/stylesheets/admin.scss */
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
}

/* line 164, app/assets/stylesheets/admin.scss */
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--admin-border-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--admin-text-secondary);
}

/* line 174, app/assets/stylesheets/admin.scss */
.table tbody + tbody {
  border-top: 2px solid var(--admin-border-color);
}

/* line 178, app/assets/stylesheets/admin.scss */
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

/* line 183, app/assets/stylesheets/admin.scss */
.table-bordered {
  border: 1px solid var(--admin-border-color);
}

/* line 187, app/assets/stylesheets/admin.scss */
.table-bordered th,
.table-bordered td {
  border: 1px solid var(--admin-border-color);
}

/* line 192, app/assets/stylesheets/admin.scss */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--admin-table-stripe);
}

/* line 196, app/assets/stylesheets/admin.scss */
.table-hover tbody tr:hover {
  background-color: var(--admin-table-hover);
}

/* line 200, app/assets/stylesheets/admin.scss */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Rounded table styles */
/* line 208, app/assets/stylesheets/admin.scss */
.table-rounded {
  border-radius: 0.5rem;
  overflow: hidden;
}

/* line 213, app/assets/stylesheets/admin.scss */
.table-rounded thead th:first-child {
  border-top-left-radius: 0.5rem;
}

/* line 217, app/assets/stylesheets/admin.scss */
.table-rounded thead th:last-child {
  border-top-right-radius: 0.5rem;
}

/* line 221, app/assets/stylesheets/admin.scss */
.table-rounded tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.5rem;
}

/* line 225, app/assets/stylesheets/admin.scss */
.table-rounded tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.5rem;
}

/* Remove bottom border from last row */
/* line 229, app/assets/stylesheets/admin.scss */
.table tbody tr:last-child td {
  border-bottom: none;
}

/* For tables with .table-bordered, we need to override the border style */
/* line 234, app/assets/stylesheets/admin.scss */
.table-bordered tbody tr:last-child td {
  border-bottom: none;
}

/* line 238, app/assets/stylesheets/admin.scss */
nav.navbar {
  font-size: 0.9rem !important;
}

/* line 242, app/assets/stylesheets/admin.scss */
nav .nav-link {
  border-radius: 13px !important;
  padding: 0.2rem 0.8rem !important;
  border: 1px solid transparent !important;
  font-size: 0.9rem !important;
}

/* line 249, app/assets/stylesheets/admin.scss */
nav .nav-link.active {
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  font-weight: 600 !important;
}

/* line 256, app/assets/stylesheets/admin.scss */
nav .navbar-brand {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
}

/* line 261, app/assets/stylesheets/admin.scss */
.logo-icon {
  margin-left: 5px;
}

/* line 265, app/assets/stylesheets/admin.scss */
.navbar-brand span {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}

/* line 270, app/assets/stylesheets/admin.scss */
.card {
  border-radius: 16px;
}

/* line 274, app/assets/stylesheets/admin.scss */
.table-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #5c01ef;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 287, app/assets/stylesheets/admin.scss */
.table-icon svg {
  width: 18px;
  height: 18px;
}

/* Top navbar styles */
/* line 293, app/assets/stylesheets/admin.scss */
.navbar-global {
  background-color: var(--admin-bg-accent);
  height: 56px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 0 10px 0 var(--admin-shadow);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* line 306, app/assets/stylesheets/admin.scss */
.navbar-global .navbar-brand {
  color: var(--admin-text-primary);
  font-weight: 600;
  font-size: 1rem;
}

/* line 312, app/assets/stylesheets/admin.scss */
.navbar-global .navbar-brand span {
  font-size: 0.8rem;
  font-weight: 400;
}

/* Sidebar styles */
/* line 318, app/assets/stylesheets/admin.scss */
.navbar-primary {
  background-color: var(--admin-bg-accent);
  backdrop-filter: blur(10px);
  position: fixed;
  bottom: 0px;
  left: 0px;
  top: 56px;
  width: 220px;
  z-index: 90;
  overflow-y: auto;
  transition: all 0.1s ease-in-out;
  box-shadow: 0 0 10px var(--admin-shadow-light);
}

/* line 332, app/assets/stylesheets/admin.scss */
.navbar-primary.collapsed {
  width: 65px;
}

/* line 336, app/assets/stylesheets/admin.scss */
.navbar-primary.collapsed:hover {
  width: 220px;
  overflow: visible;
}

/* line 341, app/assets/stylesheets/admin.scss */
.navbar-primary.collapsed:hover .nav-label {
  display: inline-block;
  animation: fadeIn 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 351, app/assets/stylesheets/admin.scss */
.navbar-primary.collapsed .nav-label {
  display: none;
}

/* line 355, app/assets/stylesheets/admin.scss */
.btn-expand-collapse {
  position: sticky;
  display: block;
  left: 0px;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  border-top: solid 1px var(--admin-border-color);
  color: var(--admin-text-secondary);
  font-size: 16px;
  text-align: center;
  background-color: var(--admin-bg-accent);
}

/* line 369, app/assets/stylesheets/admin.scss */
.btn-expand-collapse:hover,
.btn-expand-collapse:focus {
  background-color: var(--admin-hover-bg);
  color: var(--admin-text-primary);
  text-decoration: none;
}

/* line 376, app/assets/stylesheets/admin.scss */
.navbar-primary-menu,
.navbar-primary-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 383, app/assets/stylesheets/admin.scss */
.navbar-primary-menu {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 390, app/assets/stylesheets/admin.scss */
.navbar-primary-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  text-align: left;
  border-bottom: solid 1px var(--admin-border-color);
  color: var(--admin-text-secondary);
  transition: all 0.2s ease;
}

/* line 400, app/assets/stylesheets/admin.scss */
.navbar-primary-menu li a:hover {
  background-color: var(--admin-hover-bg);
  text-decoration: none;
  color: var(--admin-text-primary);
}

/* line 406, app/assets/stylesheets/admin.scss */
.navbar-primary-menu li a.active {
  background-color: #5c01ef;
  color: white;
}

/* line 411, app/assets/stylesheets/admin.scss */
.navbar-primary-menu li a .nav-icon {
  margin-right: 12px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* Main content area */
/* line 419, app/assets/stylesheets/admin.scss */
.main-content {
  margin-top: 56px;
  margin-left: 220px;
  padding: 20px;
  transition: margin-left 0.2s ease-in-out;
}

/* line 426, app/assets/stylesheets/admin.scss */
.main-content-full {
  margin-left: 0px;
}

/* line 430, app/assets/stylesheets/admin.scss */
.collapsed + .main-content {
  margin-left: 65px;
}

/* User dropdown menu */
/* line 435, app/assets/stylesheets/admin.scss */
.user-dropdown {
  background-color: var(--admin-hover-bg);
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  color: var(--admin-text-primary);
}

/* line 443, app/assets/stylesheets/admin.scss */
.user-dropdown:hover {
  background-color: var(--admin-active-bg);
  color: var(--admin-text-primary);
}

/* line 448, app/assets/stylesheets/admin.scss */
.dropdown-menu {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--admin-shadow);
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-border-color);
}

/* line 456, app/assets/stylesheets/admin.scss */
.dropdown-item {
  color: var(--admin-text-primary);
}

/* line 460, app/assets/stylesheets/admin.scss */
.dropdown-item:hover {
  background-color: var(--admin-hover-bg);
  color: var(--admin-text-primary);
}

/* line 465, app/assets/stylesheets/admin.scss */
.user-info {
  padding: 10px 15px;
  font-size: 0.9rem;
  color: var(--admin-text-muted);
}

/* Card styling */
/* line 472, app/assets/stylesheets/admin.scss */
.card {
  border-radius: 16px;
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-border-color);
  color: var(--admin-text-primary);
}

/* line 479, app/assets/stylesheets/admin.scss */
.table-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #5c01ef;
  border-radius: 10px;
  color: #fff;
}

/* line 490, app/assets/stylesheets/admin.scss */
.table-icon svg {
  width: 18px;
  height: 18px;
}

/* line 495, app/assets/stylesheets/admin.scss */
.form-sidebar {
  padding: 10px;
  margin-bottom: 10px;
}

/* line 501, app/assets/stylesheets/admin.scss */
.form-sidebar .nav-link {
  color: var(--admin-text-primary) !important;
  border-radius: 13px;
}

/* line 506, app/assets/stylesheets/admin.scss */
.form-sidebar .nav-link.active {
  background-color: var(--admin-active-bg);
  color: var(--admin-text-primary);
  font-weight: 600;
}

/* line 512, app/assets/stylesheets/admin.scss */
.form-group {
  max-width: 600px;
}

/* line 516, app/assets/stylesheets/admin.scss */
.form-group label {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}

/* Dark Mode Toggle Styling */
/* line 523, app/assets/stylesheets/admin.scss */
.dropdown-item-text {
  color: var(--admin-text-muted) !important;
  background-color: transparent !important;
}

/* line 528, app/assets/stylesheets/admin.scss */
.dropdown-item-text .form-check-input:checked {
  background-color: #5c01ef;
  border-color: #5c01ef;
}

/* line 533, app/assets/stylesheets/admin.scss */
.dropdown-item-text .form-check-input {
  background-color: var(--admin-bg-secondary);
  border: 1px solid var(--admin-border-color);
}

/* Ensure proper border styling in dark mode */
/* line 539, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .dropdown-item-text {
  border-color: var(--admin-border-color) !important;
}

/* Pagination Styling */
/* line 544, app/assets/stylesheets/admin.scss */
.pagination {
  --bs-pagination-bg: var(--admin-card-bg);
  --bs-pagination-border-color: var(--admin-border-color);
  --bs-pagination-color: var(--admin-text-primary);
  --bs-pagination-hover-color: var(--admin-text-primary);
  --bs-pagination-hover-bg: var(--admin-hover-bg);
  --bs-pagination-hover-border-color: var(--admin-border-color);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #5c01ef;
  --bs-pagination-active-border-color: #5c01ef;
  --bs-pagination-disabled-color: var(--admin-text-muted);
  --bs-pagination-disabled-bg: var(--admin-card-bg);
  --bs-pagination-disabled-border-color: var(--admin-border-color);
}

/* line 559, app/assets/stylesheets/admin.scss */
.page-link {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-border-color);
  color: var(--admin-text-primary);
}

/* line 565, app/assets/stylesheets/admin.scss */
.page-link:hover {
  background-color: var(--admin-hover-bg);
  border-color: var(--admin-border-color);
  color: var(--admin-text-primary);
}

/* line 571, app/assets/stylesheets/admin.scss */
.page-item.active .page-link {
  background-color: #5c01ef;
  border-color: #5c01ef;
  color: #fff;
}

/* line 577, app/assets/stylesheets/admin.scss */
.page-item.disabled .page-link {
  background-color: var(--admin-card-bg);
  border-color: var(--admin-border-color);
  color: var(--admin-text-muted);
}

/* Enhanced Nav-link Active State */
/* line 584, app/assets/stylesheets/admin.scss */
.navbar-primary-menu li a.active {
  background-color: #5c01ef !important;
  color: white !important;
  font-weight: 600;
}

/* line 590, app/assets/stylesheets/admin.scss */
nav .nav-link.active {
  background-color: rgba(92, 1, 239, 0.1) !important;
  color: #5c01ef !important;
  border: 1px solid rgba(92, 1, 239, 0.2) !important;
  font-weight: 600 !important;
}

/* line 597, app/assets/stylesheets/admin.scss */
[data-theme="dark"] nav .nav-link.active {
  background-color: #5c01ef !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

/* Theme Selector Styling */
/* line 604, app/assets/stylesheets/admin.scss */
#themeSelector {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-border-color);
  color: var(--admin-text-primary);
}

/* line 610, app/assets/stylesheets/admin.scss */
#themeSelector:focus {
  border-color: #5c01ef;
  box-shadow: 0 0 0 0.2rem rgba(92, 1, 239, 0.25);
}

/* line 615, app/assets/stylesheets/admin.scss */
#themeSelector option {
  background-color: var(--admin-card-bg);
  color: var(--admin-text-primary);
}

/* Form Controls Styling */
/* line 621, app/assets/stylesheets/admin.scss */
.form-control,
.form-select,
textarea.form-control {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-border-color);
  color: var(--admin-text-primary);
}

/* line 629, app/assets/stylesheets/admin.scss */
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  background-color: var(--admin-card-bg);
  border-color: #5c01ef;
  color: var(--admin-text-primary);
  box-shadow: 0 0 0 0.2rem rgba(92, 1, 239, 0.25);
}

/* line 638, app/assets/stylesheets/admin.scss */
.form-control::placeholder,
textarea.form-control::placeholder {
  color: var(--admin-text-muted);
  opacity: 0.8;
}

/* line 644, app/assets/stylesheets/admin.scss */
.form-control:disabled,
.form-select:disabled,
textarea.form-control:disabled {
  background-color: var(--admin-hover-bg);
  border-color: var(--admin-border-color);
  color: var(--admin-text-muted);
}

/* Alert Styling */
/* line 653, app/assets/stylesheets/admin.scss */
.alert {
  border: 1px solid;
  color: var(--admin-text-primary);
}

/* line 658, app/assets/stylesheets/admin.scss */
.alert-primary {
  background-color: rgba(92, 1, 239, 0.1);
  border-color: rgba(92, 1, 239, 0.2);
  color: var(--admin-text-primary);
}

/* line 664, app/assets/stylesheets/admin.scss */
.alert-secondary {
  background-color: var(--admin-hover-bg);
  border-color: var(--admin-border-color);
  color: var(--admin-text-primary);
}

/* line 670, app/assets/stylesheets/admin.scss */
.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
  color: var(--admin-text-primary);
}

/* line 676, app/assets/stylesheets/admin.scss */
.alert-info {
  background-color: rgba(23, 162, 184, 0.1);
  border-color: rgba(23, 162, 184, 0.2);
  color: var(--admin-text-primary);
}

/* line 682, app/assets/stylesheets/admin.scss */
.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.2);
  color: var(--admin-text-primary);
}

/* line 688, app/assets/stylesheets/admin.scss */
.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
  color: var(--admin-text-primary);
}

/* Dark mode specific alert adjustments */
/* line 695, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .alert-primary {
  background-color: rgba(92, 1, 239, 0.15);
  border-color: rgba(92, 1, 239, 0.3);
}

/* line 700, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .alert-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* line 705, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .alert-success {
  background-color: rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
}

/* line 710, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .alert-info {
  background-color: rgba(23, 162, 184, 0.15);
  border-color: rgba(23, 162, 184, 0.3);
}

/* line 715, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .alert-warning {
  background-color: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

/* line 720, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .alert-danger {
  background-color: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.3);
}

/* Form Labels and Additional Elements */
/* line 726, app/assets/stylesheets/admin.scss */
.form-label,
label {
  color: var(--admin-text-primary);
}

/* line 731, app/assets/stylesheets/admin.scss */
.form-text,
.text-muted {
  color: var(--admin-text-muted) !important;
}

/* Input Groups */
/* line 737, app/assets/stylesheets/admin.scss */
.input-group-text {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-border-color);
  color: var(--admin-text-secondary);
}

/* Form Check Elements */
/* line 744, app/assets/stylesheets/admin.scss */
.form-check-input {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-border-color);
}

/* line 749, app/assets/stylesheets/admin.scss */
.form-check-input:checked {
  background-color: #5c01ef;
  border-color: #5c01ef;
}

/* line 754, app/assets/stylesheets/admin.scss */
.form-check-input:focus {
  border-color: #5c01ef;
  box-shadow: 0 0 0 0.2rem rgba(92, 1, 239, 0.25);
}

/* line 759, app/assets/stylesheets/admin.scss */
.form-check-label {
  color: var(--admin-text-primary);
}

/* Badges */
/* line 764, app/assets/stylesheets/admin.scss */
.badge {
  color: #fff;
}

/* line 768, app/assets/stylesheets/admin.scss */
.badge.bg-secondary {
  background-color: var(--admin-text-muted) !important;
}

/* Buttons */
/* line 773, app/assets/stylesheets/admin.scss */
.btn-outline-secondary {
  color: var(--admin-text-primary);
  border-color: var(--admin-border-color);
}

/* line 778, app/assets/stylesheets/admin.scss */
.btn-outline-secondary:hover {
  background-color: var(--admin-hover-bg);
  border-color: var(--admin-border-color);
  color: var(--admin-text-primary);
}

/* line 785, app/assets/stylesheets/admin.scss */
.devise-notice {
  background-color: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.2);
  color: var(--admin-text-primary);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* line 794, app/assets/stylesheets/admin.scss */
.devise-alert {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: var(--admin-text-primary);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* line 803, app/assets/stylesheets/admin.scss */
.devise-footer {
  color: var(--admin-text-muted);
}

/* line 807, app/assets/stylesheets/admin.scss */
.devise-footer a {
  color: var(--admin-text-secondary);
  text-decoration: none;
}

/* line 812, app/assets/stylesheets/admin.scss */
.devise-footer a:hover {
  color: var(--admin-text-primary);
}

/* Dark mode adjustments for Devise */
/* line 817, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .devise-notice {
  background-color: rgba(23, 162, 184, 0.15);
  border-color: rgba(23, 162, 184, 0.3);
}

/* line 822, app/assets/stylesheets/admin.scss */
[data-theme="dark"] .devise-alert {
  background-color: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.3);
}

/* Ensure proper body background for Devise layout */
/* line 828, app/assets/stylesheets/admin.scss */
body.d-flex {
  background-color: var(--admin-bg-primary);
  color: var(--admin-text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/*Workflow Edit*/
/* line 836, app/assets/stylesheets/admin.scss */
.workflow-edit-container {
  background-color: #1a1a1a;
  min-height: 100vh;
}

/* line 841, app/assets/stylesheets/admin.scss */
.workflow-edit-layout {
  display: flex;
  gap: 40px;
  align-items: start;
}

/* line 847, app/assets/stylesheets/admin.scss */
.workflow-edit-left-panel {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 855, app/assets/stylesheets/admin.scss */
.workflow-edit-right-panel {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 862, app/assets/stylesheets/admin.scss */
.workflow-tabs-container {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

/* line 869, app/assets/stylesheets/admin.scss */
.workflow-tabs-title {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: stretch;
}

/* line 876, app/assets/stylesheets/admin.scss */
.workflow-tabs-title p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  white-space: pre;
}

/* line 884, app/assets/stylesheets/admin.scss */
.workflow-tab-button {
  border: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  padding: 10px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* line 896, app/assets/stylesheets/admin.scss */
.workflow-tab-button.active {
  border-bottom-color: #5c00ef;
}

/* line 900, app/assets/stylesheets/admin.scss */
.workflow-tab-button p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
  white-space: pre;
}

/* line 909, app/assets/stylesheets/admin.scss */
.workflow-tab-button.active p {
  font-weight: 600;
}

/* line 913, app/assets/stylesheets/admin.scss */
.workflow-tab-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* line 920, app/assets/stylesheets/admin.scss */
.workflow-form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* line 926, app/assets/stylesheets/admin.scss */
.workflow-form-label-wrapper {
  padding: 10px;
}

/* line 930, app/assets/stylesheets/admin.scss */
.workflow-form-label-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

/* line 937, app/assets/stylesheets/admin.scss */
.workflow-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  white-space: pre;
}

/* line 945, app/assets/stylesheets/admin.scss */
.workflow-textarea {
  background-color: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  height: 200px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: white;
  resize: vertical;
}

/* line 958, app/assets/stylesheets/admin.scss */
.workflow-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 962, app/assets/stylesheets/admin.scss */
.workflow-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

/* line 967, app/assets/stylesheets/admin.scss */
.workflow-generate-button {
  background-color: #5c00ef;
  border: none;
  border-radius: 13px;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* line 980, app/assets/stylesheets/admin.scss */
.workflow-generate-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* line 985, app/assets/stylesheets/admin.scss */
.workflow-generate-button p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0;
  white-space: pre;
}

/* line 994, app/assets/stylesheets/admin.scss */
.workflow-images-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0;
  text-align: center;
  white-space: pre;
}

/* line 1004, app/assets/stylesheets/admin.scss */
.workflow-images-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 1010, app/assets/stylesheets/admin.scss */
.workflow-images-empty i {
  font-size: 48px;
}

/* line 1014, app/assets/stylesheets/admin.scss */
.workflow-images-empty p {
  margin-top: 16px;
  margin-bottom: 4px;
}

/* line 1019, app/assets/stylesheets/admin.scss */
.workflow-images-empty small {
  color: rgba(255, 255, 255, 0.3);
}

/* line 1023, app/assets/stylesheets/admin.scss */
.workflow-gen-image-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* line 1031, app/assets/stylesheets/admin.scss */
.workflow-gen-image-container {
  position: relative;
  width: 100%;
  min-height: 200px;
}

/* line 1037, app/assets/stylesheets/admin.scss */
.workflow-gen-image-img {
  inset: 0;
  width: 100%;
  height: auto;
}

/* line 1043, app/assets/stylesheets/admin.scss */
.workflow-gen-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

/* line 1055, app/assets/stylesheets/admin.scss */
.workflow-gen-image-placeholder.failed {
  background-color: #dc3545;
}

/* line 1059, app/assets/stylesheets/admin.scss */
.workflow-gen-image-placeholder.processing {
  background-color: #5c00ef;
}

/* line 1063, app/assets/stylesheets/admin.scss */
.workflow-gen-image-placeholder i {
  font-size: 48px;
}

/* line 1067, app/assets/stylesheets/admin.scss */
.workflow-gen-image-placeholder p {
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 600;
}

/* line 1073, app/assets/stylesheets/admin.scss */
.workflow-gen-image-overlay {
  position: absolute;
  bottom: 0.33px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.52);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: white;
  white-space: pre;
}

/* line 1089, app/assets/stylesheets/admin.scss */
.workflow-gen-image-overlay p {
  margin: 0;
}

/* line 1093, app/assets/stylesheets/admin.scss */
.workflow-gen-image-overlay .reuse-link {
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
}

/* line 1099, app/assets/stylesheets/admin.scss */
.workflow-gen-image-overlay .reuse-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1103, app/assets/stylesheets/admin.scss */
.processing-pulse {
  animation: pulse-animation 2s ease-in-out infinite;
}

@keyframes pulse-animation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
