@tailwind base;
@tailwind components;
@tailwind utilities;


/* line 1, app/assets/stylesheets/scaffolds.scss */
#error_explanation {
  background-color: #cee4f3;
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS 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/SCSS
 * 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.
 *




*/
/* Modern Design System Variables */
/* line 20, app/assets/stylesheets/application.scss */
:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-accent: #06b6d4;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
}

/* Enhanced Typography */
/* line 52, app/assets/stylesheets/application.scss */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 59, app/assets/stylesheets/application.scss */
.hero-text {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* Modern Button Styles */
/* line 66, app/assets/stylesheets/application.scss */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: var(--border-radius-lg);
  color: white;
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: all 0.2s ease-in-out;
  box-shadow: var(--shadow-md);
}

/* line 77, app/assets/stylesheets/application.scss */
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

/* line 83, app/assets/stylesheets/application.scss */
.btn-secondary {
  background: white;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  color: var(--color-gray-700);
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: all 0.2s ease-in-out;
  box-shadow: var(--shadow-sm);
}

/* line 94, app/assets/stylesheets/application.scss */
.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Modern Card Styles */
/* line 102, app/assets/stylesheets/application.scss */
.card {
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  transition: all 0.2s ease-in-out;
}

/* line 110, app/assets/stylesheets/application.scss */
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* line 115, app/assets/stylesheets/application.scss */
.card-feature {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s ease-in-out;
}

/* line 123, app/assets/stylesheets/application.scss */
.card-feature:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Icon Containers */
/* line 130, app/assets/stylesheets/application.scss */
.icon-container {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--border-radius-lg);
  padding: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* Enhanced Sections */
/* line 141, app/assets/stylesheets/application.scss */
.section-padding {
  padding: 5rem 0;
}

/* line 145, app/assets/stylesheets/application.scss */
.section-bg-gradient {
  background: linear-gradient(135deg, var(--color-gray-50) 0%, white 100%);
}

/* Navigation Enhancements */
/* line 150, app/assets/stylesheets/application.scss */
.nav-link {
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* line 155, app/assets/stylesheets/application.scss */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease-in-out;
}

/* line 166, app/assets/stylesheets/application.scss */
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Testimonial Enhancements */
/* line 172, app/assets/stylesheets/application.scss */
.testimonial-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

/* line 182, app/assets/stylesheets/application.scss */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* Google OAuth Button */
/* line 193, app/assets/stylesheets/application.scss */
.google-blue {
  background: #4285f4;
  transition: all 0.2s ease-in-out;
}

/* line 198, app/assets/stylesheets/application.scss */
.google-blue:hover {
  background: #3367d6;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Demo and Special Effects */
/* line 205, app/assets/stylesheets/application.scss */
.rails-demo-inline {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* line 211, app/assets/stylesheets/application.scss */
.special-bright {
  -webkit-filter: brightness(10000%);
  filter: brightness(10000%);
}

/* line 216, app/assets/stylesheets/application.scss */
.brisk-rails-demo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
}

/* Console/Log Styling */
/* line 226, app/assets/stylesheets/application.scss */
.log_line {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ANSI Color Themes - keeping existing functionality */
/* line 234, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-black-fg {
  color: #000000;
}

/* line 235, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-red-fg {
  color: #bb0000;
}

/* line 236, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-green-fg {
  color: #00bb00;
}

/* line 237, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-yellow-fg {
  color: #bbbb00;
}

/* line 238, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-blue-fg {
  color: #0000bb;
}

/* line 239, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-magenta-fg {
  color: #bb00bb;
}

/* line 240, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-cyan-fg {
  color: #00bbbb;
}

/* line 241, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-white-fg {
  color: white;
}

/* line 242, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-black-fg {
  color: #555555;
}

/* line 243, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-red-fg {
  color: #ff5555;
}

/* line 244, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-green-fg {
  color: lime;
}

/* line 245, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-yellow-fg {
  color: #ffff55;
}

/* line 246, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-blue-fg {
  color: #5555ff;
}

/* line 247, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-magenta-fg {
  color: #ff55ff;
}

/* line 248, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-cyan-fg {
  color: #55ffff;
}

/* line 249, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-white-fg {
  color: white;
}

/* line 250, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-black-bg {
  background-color: #000000;
}

/* line 251, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-red-bg {
  background-color: #bb0000;
}

/* line 252, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-green-bg {
  background-color: #00bb00;
}

/* line 253, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-yellow-bg {
  background-color: #bbbb00;
}

/* line 254, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-blue-bg {
  background-color: #0000bb;
}

/* line 255, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-magenta-bg {
  background-color: #bb00bb;
}

/* line 256, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-cyan-bg {
  background-color: #00bbbb;
}

/* line 257, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-white-bg {
  background-color: white;
}

/* line 258, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-black-bg {
  background-color: #555555;
}

/* line 259, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-red-bg {
  background-color: #ff5555;
}

/* line 260, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-green-bg {
  background-color: lime;
}

/* line 261, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-yellow-bg {
  background-color: #ffff55;
}

/* line 262, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-blue-bg {
  background-color: #5555ff;
}

/* line 263, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-magenta-bg {
  background-color: #ff55ff;
}

/* line 264, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-cyan-bg {
  background-color: #55ffff;
}

/* line 265, app/assets/stylesheets/application.scss */
.standard-console-ansi-theme .ansi-bright-white-bg {
  background-color: white;
}

/* line 269, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-black-fg {
  color: #3A3A3A;
}

/* line 270, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-red-fg {
  color: #DD948E;
}

/* line 271, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-green-fg {
  color: #B6D1AA;
}

/* line 272, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-yellow-fg {
  color: #F3D57C;
}

/* line 273, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-blue-fg {
  color: #8AA9D5;
}

/* line 274, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-magenta-fg {
  color: #CBAFD5;
}

/* line 275, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-cyan-fg {
  color: #9AD1D4;
}

/* line 276, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-white-fg {
  color: #EFEFEF;
}

/* line 277, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-black-fg {
  color: #5E5D5E;
}

/* line 278, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-red-fg {
  color: #E69B94;
}

/* line 279, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-green-fg {
  color: #D1F0C3;
}

/* line 280, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-yellow-fg {
  color: #F4D799;
}

/* line 281, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-blue-fg {
  color: #A6CBFE;
}

/* line 282, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-magenta-fg {
  color: #E7C7F2;
}

/* line 283, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-cyan-fg {
  color: #B0F0F5;
}

/* line 284, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-white-fg {
  color: #FFF;
}

/* line 285, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-black-bg {
  background-color: #3A3A3A;
}

/* line 286, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-red-bg {
  background-color: #DD948E;
}

/* line 287, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-green-bg {
  background-color: #B6D1AA;
}

/* line 288, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-yellow-bg {
  background-color: #F3D57C;
}

/* line 289, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-blue-bg {
  background-color: #8AA9D5;
}

/* line 290, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-magenta-bg {
  background-color: #CBAFD5;
}

/* line 291, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-cyan-bg {
  background-color: #9AD1D4;
}

/* line 292, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-white-bg {
  background-color: #EFEFEF;
}

/* line 293, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-black-bg {
  background-color: #5E5D5E;
}

/* line 294, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-red-bg {
  background-color: #E69B94;
}

/* line 295, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-green-bg {
  background-color: #D1F0C3;
}

/* line 296, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-yellow-bg {
  background-color: #F4D799;
}

/* line 297, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-blue-bg {
  background-color: #A6CBFE;
}

/* line 298, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-magenta-bg {
  background-color: #E7C7F2;
}

/* line 299, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-cyan-bg {
  background-color: #B0F0F5;
}

/* line 300, app/assets/stylesheets/application.scss */
.tomorrow-night-eighties-ansi-theme .ansi-bright-white-bg {
  background-color: #FFF;
}

/* Enhanced CI Names Animation */
/* line 304, app/assets/stylesheets/application.scss */
.ci-names-scroll::before {
  content: "CircleCI";
  animation: animate infinite 30s;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes animate {
  0% {
    content: "CircleCI";
  }
  20% {
    content: "Github Actions";
  }
  40% {
    content: "Gitlab CI/CD";
  }
  60% {
    content: "Heroku CI";
  }
  80% {
    content: "Bitbucket Pipelines";
  }
}

/* Dashboard Styles */
/* line 323, app/assets/stylesheets/application.scss */
.dashboard-container {
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
}

/* line 331, app/assets/stylesheets/application.scss */
.dashboard-header {
  background: linear-gradient(135deg, var(--color-gray-50) 0%, white 100%);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 2rem;
}

/* line 337, app/assets/stylesheets/application.scss */
.dashboard-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

/* line 344, app/assets/stylesheets/application.scss */
.dashboard-subtitle {
  color: var(--color-gray-600);
  font-size: 1rem;
}

/* line 349, app/assets/stylesheets/application.scss */
.project-card {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* line 359, app/assets/stylesheets/application.scss */
.project-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* line 365, app/assets/stylesheets/application.scss */
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* line 377, app/assets/stylesheets/application.scss */
.project-card:hover::before {
  opacity: 1;
}

/* line 381, app/assets/stylesheets/application.scss */
.project-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

/* line 388, app/assets/stylesheets/application.scss */
.project-meta {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* line 394, app/assets/stylesheets/application.scss */
.project-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* line 400, app/assets/stylesheets/application.scss */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  background: var(--color-gray-50);
  border-radius: var(--border-radius-md);
  min-width: 80px;
}

/* line 410, app/assets/stylesheets/application.scss */
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* line 416, app/assets/stylesheets/application.scss */
.stat-label {
  font-size: 0.75rem;
  color: var(--color-gray-600);
  text-align: center;
  margin-top: 0.25rem;
}

/* line 423, app/assets/stylesheets/application.scss */
.table-modern {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
}

/* line 431, app/assets/stylesheets/application.scss */
.table-modern th {
  background: var(--color-gray-50);
  color: var(--color-gray-700);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-200);
}

/* line 440, app/assets/stylesheets/application.scss */
.table-modern td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-900);
}

/* line 446, app/assets/stylesheets/application.scss */
.table-modern tbody tr:hover {
  background: var(--color-gray-50);
}

/* line 450, app/assets/stylesheets/application.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 461, app/assets/stylesheets/application.scss */
.status-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

/* line 466, app/assets/stylesheets/application.scss */
.status-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

/* line 471, app/assets/stylesheets/application.scss */
.status-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

/* line 476, app/assets/stylesheets/application.scss */
.status-info {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
}

/* line 481, app/assets/stylesheets/application.scss */
.form-modern {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
}

/* line 489, app/assets/stylesheets/application.scss */
.form-modern .form-group {
  margin-bottom: 1.5rem;
}

/* line 493, app/assets/stylesheets/application.scss */
.form-modern label {
  display: block;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

/* line 500, app/assets/stylesheets/application.scss */
.form-modern input[type="text"],
.form-modern input[type="email"],
.form-modern select,
.form-modern textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius-md);
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
}

/* line 512, app/assets/stylesheets/application.scss */
.form-modern input:focus,
.form-modern select:focus,
.form-modern textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Utility Classes */
/* line 521, app/assets/stylesheets/application.scss */
.backdrop-blur {
  backdrop-filter: blur(8px);
}

/* line 525, app/assets/stylesheets/application.scss */
.text-balance {
  text-wrap: balance;
}
