/* ========================================= */
/* FREE TOOLS GLOBAL UTILITIES               */
/* ========================================= */
.ft-form-group {
   margin-bottom: 24px;
}

.ft-form-group .btn {
   margin-top: 16px;
}


.ft-form-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   justify-content: space-between;
}

.grid-2 {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 32px;
   align-items: start;
}

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


.ft-label {
   display: block;
   margin-bottom: 8px;
   font-size: 14px;
   font-weight: 500;
   color: var(--text-dark);
}

.error-message {
   color: #ef4444;
   font-size: 12px;
   margin-top: 6px;
   font-weight: 500;
   display: none;
}

.error-message.show,
.ft-form-group.invalid .error-message {
   display: block;
}



.ft-input {
   width: 100%;
   padding: 12px 16px;
   background: var(--bg-tertiary);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-md);
   color: var(--text-main);
   font-size: 15px;
   transition: all 0.2s ease;
   outline: none;
   font-family: inherit;
   box-sizing: border-box;
}

select.ft-input {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   padding-right: 40px;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23191BC5' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 16px center;
   cursor: pointer;
}

textarea.ft-input {
   min-height: 120px;
   resize: vertical;
}

.ft-input:focus {
   background: var(--bg-primary);
   border-color: var(--accent-primary);
   box-shadow: 0 0 0 3px rgba(2, 87, 250, 0.1);
}

.ft-input::placeholder,
.chip-input::placeholder {
   color: #191BC5 !important;
   opacity: 1;
}

.ft-output {
   margin-top: 32px;
   padding: 24px;
   background: var(--bg-tertiary);
   border-radius: var(--radius-md);
   border: 1px dashed var(--border-color);
   display: none;
}

.ft-output.active {
   display: block;
}

.btn-outline {
   background: transparent;
   color: var(--text-main);
   border: 1px solid var(--border-color);
}

.btn-outline:hover {
   background: var(--bg-tertiary);
   border-color: var(--text-muted);
}

.output-actions {
   display: flex;
   gap: 12px;
   margin-top: 24px;
}

/* Post preview fixes */
.linkedin-post {
   background: var(--bg-primary);
   border-radius: var(--radius-md);
   padding: 20px;
   margin-bottom: 24px;
   border: 1px solid var(--border-color);
   box-shadow: var(--shadow-sm);
   text-align: left;
}

.post-header {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 16px;
}

.post-avatar {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: var(--bg-secondary) url("https://storage.googleapis.com/msgsndr/5xhiZFWUPv9xmYTSSdXO/media/6932b045e6551c876174b88d.png") center/cover;
}

.post-name {
   font-size: 14px;
   font-weight: 600;
   color: var(--text-main);
}

.post-meta {
   font-size: 12px;
   color: var(--text-muted);
}

.post-content {
   font-size: 14px;
   line-height: 1.6;
   color: var(--text-main);
   white-space: pre-wrap;
   word-break: break-word;
}

.post-actions {
   display: flex;
   gap: 16px;
   padding-top: 12px;
   border-top: 1px solid var(--border-color);
   margin-top: 12px;
}

.post-action {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 13px;
   color: var(--text-muted);
   font-weight: 500;
}

/* Grid & Other layouts */
.skills-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
}



/* Mobile Gate & Tool Visibility */
.mobile-gate {
   display: none;
}

@media (max-width: 991px) {
   .desktop-only {
      display: none !important;
   }

   .mobile-gate {
      display: flex !important;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px;
      min-height: 350px;
   }
}

.mobile-gate__card {
   max-width: 400px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
}

.mobile-gate__icon svg {
   width: 64px;
   height: 64px;
   color: var(--accent-primary);
   opacity: 0.4;
}

.mobile-gate__message {
   font-size: 16px;
   line-height: 1.6;
   color: var(--text-muted);
   margin: 0;
}

.mobile-gate__btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 28px;
   background: var(--accent-primary);
   color: white !important;
   border-radius: var(--radius-md);
   font-weight: 700;
   text-decoration: none;
   transition: all 0.2s ease;
   box-shadow: var(--shadow-glow);
}

.mobile-gate__btn:hover {
   background: var(--accent-primary-hover);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(2, 87, 250, 0.3);
}



.btn-secondary,
.btn-reset {
   background: var(--bg-tertiary);
   color: var(--text-main);
   border: 1px solid var(--border-color);
}

.btn-secondary:hover,
.btn-reset:hover {
   background: var(--bg-secondary);
   border-color: var(--text-muted);
}

.btn-primary,
.btn-download,
.btn-generate {
   background: var(--Primary-Gradient, linear-gradient(93deg, #0257FA 2.87%, #191BC5 96.99%)) !important;
   color: white;
   border: none;
}

.btn-primary:hover,
.btn-download:hover,
.btn-generate:hover {
   background: var(--accent-primary-hover);
   transform: translateY(-2px);
   box-shadow: var(--shadow-glow);
}

.ft-card {
   background: var(--bg-primary);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-lg);
   padding: 32px;
   box-shadow: var(--shadow-md);
   margin-bottom: 24px;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-card:hover {
   box-shadow: var(--shadow-lg);
   transform: translateY(-2px);
}




/* File Upload Styling */
input[type="file"] {
   display: none;
}

.upload-btn,
.file-upload,
.upload-button {
   width: 100%;
   padding: 18px;
   background: var(--bg-tertiary);
   border: 1px dashed #6366f1;
   /* Nice purple indigo match */
   color: var(--text-main);
   border-radius: var(--radius-md);
   cursor: pointer;
   text-align: center;
   transition: all 0.2s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   font-size: 15px;
   font-weight: 500;
   font-family: inherit;
   box-sizing: border-box;
}

.upload-btn:hover,
.file-upload:hover,
.upload-button:hover {
   background: var(--bg-secondary);
   border-color: var(--text-muted);
}

/* Color Picker Styling */
input[type="color"] {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   width: 50px;
   height: 48px;
   background-color: transparent;
   border: none;
   cursor: pointer;
   padding: 0;
   border-radius: var(--radius-md);
}

input[type="color"]::-webkit-color-swatch-wrapper {
   padding: 0;
}

input[type="color"]::-webkit-color-swatch {
   border-radius: var(--radius-sm);
   border: 1px solid var(--border-color);
   box-shadow: var(--shadow-sm);
   transition: all 0.2s ease;
}

input[type="color"]::-moz-color-swatch {
   border-radius: var(--radius-sm);
   border: 1px solid var(--border-color);
   box-shadow: var(--shadow-sm);
   transition: all 0.2s ease;
}

input[type="color"]:hover::-webkit-color-swatch {
   border-color: var(--text-muted);
}

/* Color Input Layout Wrappers */
.color-input-wrapper {
   display: flex;
   gap: 12px;
   align-items: center;
}

.color-presets {
   display: flex;
   gap: 10px;
   margin-top: 12px;
}

.color-preset {
   padding: 8px 16px;
   border-radius: var(--radius-sm);
   border: 1px solid var(--border-color);
   cursor: pointer;
   font-size: 13px;
   font-weight: 500;
   transition: all 0.2s ease;
   font-family: inherit;
}

.color-preset.blue {
   background: var(--accent-primary);
   color: white;
   border-color: transparent;
}

.color-preset.black {
   background: var(--text-main);
   color: var(--bg-primary);
   border-color: transparent;
}

.color-preset:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-sm);
}

/* Informational Callout Block (.leading-content) */
.leading-content {
   background-color: var(--bg-tertiary);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-md);
   padding: 16px 20px;
   margin-bottom: 24px;
}

.leading-content-title {
   font-size: 15px;
   font-weight: 600;
   color: var(--accent-primary);
   margin-bottom: 12px;
   display: flex;
   align-items: center;
   gap: 8px;
}

.leading-content-text {
   font-size: 14px;
   color: var(--text-main);
   line-height: 1.6;
}

.leading-content-example {
   margin-top: 12px;
   padding: 12px 16px;
   background-color: var(--bg-secondary);
   border-radius: var(--radius-sm);
   font-size: 14px;
   color: var(--text-muted);
   border-left: 3px solid var(--accent-primary);
}

/* Custom Chip Inputs (.chip-input-container) */
.chip-input-container {
   width: 100%;
   padding: 8px 12px;
   border-radius: var(--radius-md);
   background-color: var(--bg-tertiary);
   border: 1px solid var(--border-color);
   min-height: 52px;
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   align-items: center;
   cursor: text;
   transition: all 0.2s ease-in-out;
}

.chip-input-container:focus-within {
   border-color: var(--accent-primary);
   box-shadow: 0 0 0 1px var(--accent-primary);
}

.chip {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 6px 12px;
   background-color: var(--bg-secondary);
   border-radius: var(--radius-sm);
   font-size: 14px;
   color: var(--text-main);
}

.chip-remove {
   width: 18px;
   height: 18px;
   border-radius: 50%;
   background-color: var(--text-muted);
   border: none;
   color: var(--bg-primary);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 10px;
   font-weight: bold;
   transition: all 0.2s ease;
   padding: 0;
}

.chip-remove:hover {
   background-color: #ef4444;
   /* red */
   color: white;
}

.chip-input {
   flex-grow: 1;
   background: transparent;
   border: none;
   color: var(--text-main);
   outline: none;
   font-size: 15px;
   min-width: 120px;
   padding: 4px;
   font-family: inherit;
}

/* Range Input Styling */
.range-input {
   -webkit-appearance: none;
   width: 100%;
   height: 6px;
   background: var(--bg-secondary);
   border-radius: 3px;
   margin: 15px 0;
   outline: none;
}

.range-input::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 18px;
   height: 18px;
   background: var(--accent-primary);
   border-radius: 50%;
   cursor: pointer;
   border: 2px solid white;
   box-shadow: var(--shadow-sm);
   transition: all 0.2s ease;
}

.range-input::-webkit-slider-thumb:hover {
   transform: scale(1.1);
   box-shadow: 0 0 10px rgba(2, 87, 250, 0.3);
}

/* Color branded ranges */
.range-blue::-webkit-slider-thumb {
   background: #3b82f6;
}

.range-green::-webkit-slider-thumb {
   background: #10b981;
}

.range-purple::-webkit-slider-thumb {
   background: #8b5cf6;
}

.range-orange::-webkit-slider-thumb {
   background: #f59e0b;
}

/* Tabs system */
.tabs {
   display: flex;
   gap: 12px;
   margin-bottom: 20px;
   border-bottom: 1px solid var(--border-color);
   padding-bottom: 2px;
}

.tab {
   padding: 8px 16px;
   font-size: 14px;
   font-weight: 600;
   color: var(--text-muted);
   cursor: pointer;
   transition: all 0.2s ease;
   border-bottom: 2px solid transparent;
}

.tab:hover {
   color: var(--text-main);
}

.tab.active {
   color: var(--accent-primary);
   border-bottom-color: var(--accent-primary);
}

/* Informational & Status Elements */
.helper-text {
   display: block;
   font-size: 12px;
   color: var(--text-muted);
   margin-top: 6px;
}

.message {
   padding: 12px 16px;
   border-radius: var(--radius-md);
   font-size: 14px;
   margin-top: 20px;
}

.message.error {
   background: #fee2e2;
   color: #b91c1c;
   border: 1px solid #fecaca;
}

.message.success {
   background: #dcfce7;
   color: #15803d;
   border: 1px solid #bbf7d0;
}

.section-title {
   font-size: 18px;
   font-weight: 700;
   color: var(--text-main);
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.tip-box {
   display: flex;
   gap: 12px;
   padding: 16px;
   background: var(--bg-tertiary);
   border-radius: var(--radius-md);
   border-left: 4px solid var(--accent-primary);
   margin-top: 24px;
}

.tip-box-text {
   font-size: 13px;
   color: var(--text-muted);
   line-height: 1.5;
}

/* Tool Preview Sections */
.preview-section {
   background: var(--bg-secondary);
   padding: 24px;
   border-radius: var(--radius-lg);
   border: 1px solid var(--border-color);
   margin-bottom: 32px;
}

.preview-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
}

.live-badge {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   color: #10b981;
   background: rgba(16, 185, 129, 0.1);
   padding: 4px 8px;
   border-radius: 4px;
   display: flex;
   align-items: center;
   gap: 4px;
}

.live-badge::before {
   content: "";
   width: 6px;
   height: 6px;
   background: currentColor;
   border-radius: 50%;
}

.qr-canvas-wrapper {
   display: flex;
   justify-content: center;
   padding: 32px;
   background: white;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
}

/* LinkedIn Banner Maker Specific Styles */
.banner-maker-container {
   display: flex;
   flex-direction: column;
}

.tool-header {
   display: flex;
   justify-content: flex-end;
   margin-bottom: 24px;
}

.toolbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   padding: 16px;
   background: var(--bg-tertiary);
   border-radius: var(--radius-md);
   border: 1px solid var(--border-color);
   margin-bottom: 24px;
}

.toolbar-group {
   display: flex;
   gap: 12px;
   align-items: center;
}

.toolbar-btn {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 8px 16px;
   background: var(--bg-secondary);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-sm);
   color: var(--text-main);
   font-size: 14px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.2s ease;
   white-space: nowrap;
}

.toolbar-btn:hover {
   background: var(--bg-primary);
   border-color: var(--accent-primary);
}

.toolbar-btn.templates {
   background: #3b0764;
   /* deep purple */
   color: white;
   border-color: #581c87;
}

.toolbar-btn.templates:hover {
   background: #581c87;
}

.toolbar-btn.patterns {
   background: #450a0a;
   /* deep red */
   color: white;
   border-color: #7f1d1d;
}

.toolbar-btn.patterns:hover {
   background: #7f1d1d;
}

.canvas-container {
   background: var(--bg-secondary);
   padding: 40px;
   border-radius: var(--radius-lg);
   border: 1px solid var(--border-color);
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 24px;
   min-height: 300px;
}

.canvas {
   width: 100%;
   max-width: 800px;
   aspect-ratio: 1584 / 396;
   background: linear-gradient(135deg, #3498db, #2980b9);
   border-radius: 8px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 40px 60px;
   color: white;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.canvas-title {
   font-size: clamp(24px, 5vw, 56px);
   font-weight: 800;
   margin-bottom: 8px;
   letter-spacing: -1px;
}

.canvas-subtitle {
   font-size: clamp(14px, 2vw, 24px);
   font-weight: 500;
   opacity: 0.9;
}

.tips {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 16px 24px;
   background: var(--bg-tertiary);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-md);
}

.tips-icon {
   font-size: 18px;
   filter: grayscale(1);
   opacity: 0.7;
}

.tips-text {
   font-size: 13px;
   color: var(--text-muted);
   font-weight: 500;
}


/* LinkedIn Quotes Image Generator Specific Styles */
.quote-gen-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 32px;
   align-items: start;
}

@media (max-width: 991px) {
   .quote-gen-container {
      grid-template-columns: 1fr;
   }
}

.preview-wrapper {
   background: #8b5cf6;
   border-radius: var(--radius-lg);
   padding: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 400px;
   aspect-ratio: 1/1;
   transition: background 0.3s ease;
}

.quote-card {
   background: white;
   padding: 32px;
   border-radius: 16px;
   width: 100%;
   max-width: 340px;
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
   color: #111827;
   text-align: left;
}

.card-header {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 24px;
}

.avatar {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: #e5e7eb;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
}

.avatar img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.name {
   font-size: 15px;
   font-weight: 700;
   color: #111827;
   line-height: 1.2;
}

.tagline {
   font-size: 13px;
   color: #6b7280;
   line-height: 1.2;
}

.quote {
   font-size: 20px;
   font-weight: 600;
   line-height: 1.5;
   color: #111827;
   word-break: break-word;
}

.panel-settings {
   background: var(--bg-secondary);
   padding: 24px;
   border-radius: var(--radius-lg);
   border: 1px solid var(--border-color);
}

.panel-settings .buttons {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
   margin-bottom: 24px;
}

.panel-settings .buttons .btn {
   margin-top: 0;
   padding: 14px;
   font-weight: 600;
}

.settings-row {
   margin-bottom: 20px;
}

.settings-row:last-child {
   margin-bottom: 0;
}

/* =========================================
   MOBILE RESPONSIVE — FREE TOOLS
   ========================================= */
@media (max-width: 768px) {

   .form-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
   }

   /* Reduce outer blue panel padding & radius */
   .formatter-section .blue-panel {
      padding: 12px;
      border-radius: 16px;
   }

   /* Reduce section negative margin overlap */
   .formatter-section {
      padding: 0 0 32px 0;
      margin-top: -30px;
   }

   /* Tighten inner container padding */
   .formatter-section .container {
      padding: 0 8px;
   }

   /* Reduce card padding & radius */
   .ft-card {
      padding: 16px;
      border-radius: 12px;
      margin-bottom: 16px;
   }

   /* Stack form rows vertically */
   .ft-form-row {
      flex-direction: column;
      gap: 0;
   }

   .ft-form-row .ft-form-group {
      width: 100% !important;
   }

   /* Reduce form group spacing */
   .ft-form-group {
      margin-bottom: 16px;
   }

   /* Smaller input padding */
   .ft-input {
      padding: 10px 12px;
      font-size: 14px;
      border-radius: 10px;
   }

   select.ft-input {
      padding-right: 36px;
      background-position: right 12px center;
   }

   textarea.ft-input {
      min-height: 100px;
   }

   /* Buttons full width on mobile */
   .ft-card .btn,
   .ft-form-group .btn {
      width: 100%;
      justify-content: center;
      padding: 12px 16px;
      font-size: 14px;
   }

   /* Output area */
   .ft-output {
      padding: 16px;
      margin-top: 20px;
   }

   .output-actions {
      flex-direction: column;
      gap: 8px;
      margin-top: 16px;
   }

   .output-actions .btn {
      width: 100%;
      justify-content: center;
   }

   /* Labels */
   .ft-label {
      font-size: 13px;
      margin-bottom: 6px;
   }

   /* Grid layouts go single column */
   .grid-2 {
      grid-template-columns: 1fr;
      gap: 16px;
   }

   /* Upload button */
   .upload-btn,
   .file-upload,
   .upload-button {
      padding: 14px;
      font-size: 14px;
   }

   /* Toolbar compact */
   .toolbar {
      flex-wrap: wrap;
      padding: 12px;
      gap: 8px;
   }

   .toolbar-group {
      flex-wrap: wrap;
      gap: 8px;
   }

   .toolbar-btn {
      padding: 6px 12px;
      font-size: 13px;
   }

   /* Canvas / Banner Maker */
   .canvas-container {
      padding: 16px;
      min-height: 200px;
   }

   .canvas {
      padding: 20px 24px;
   }

   /* Quote Generator Preview */
   .preview-wrapper {
      padding: 20px;
      min-height: 280px;
   }

   .quote-card {
      padding: 20px;
      max-width: 100%;
   }

   .quote {
      font-size: 16px;
   }

   /* Panel settings */
   .panel-settings {
      padding: 16px;
   }

   .panel-settings .buttons {
      grid-template-columns: 1fr;
      gap: 8px;
   }

   /* Color presets wrap */
   .color-presets {
      flex-wrap: wrap;
      gap: 8px;
   }

   .color-preset {
      padding: 6px 12px;
      font-size: 12px;
   }

   /* Chip input */
   .chip-input-container {
      min-height: 44px;
      padding: 6px 10px;
   }

   .chip {
      font-size: 13px;
      padding: 4px 10px;
   }

   /* Tabs compact */
   .tabs {
      gap: 4px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
   }

   .tab {
      padding: 6px 12px;
      font-size: 13px;
      white-space: nowrap;
   }

   /* Tip box */
   .tip-box {
      padding: 12px;
      gap: 8px;
      margin-top: 16px;
   }

   .tip-box-text {
      font-size: 12px;
   }

   /* Leading content */
   .leading-content {
      padding: 12px 14px;
      margin-bottom: 16px;
   }

   .leading-content-title {
      font-size: 14px;
   }

   .leading-content-text {
      font-size: 13px;
   }

   /* Section title */
   .section-title {
      font-size: 16px;
      margin-bottom: 16px;
   }

   /* LinkedIn post preview */
   .linkedin-post {
      padding: 14px;
   }

   /* QR canvas */
   .qr-canvas-wrapper {
      padding: 12px !important;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      overflow: hidden;
   }

   #qr-code {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
   }

   #qr-code canvas,
   #qr-code svg {
      max-width: 100% !important;
      height: auto !important;
   }

   /* Fix QR Header Actions */
   .tool-header .header-actions {
      flex-direction: column !important;
      width: 100% !important;
      margin-left: 0 !important;
      margin-bottom: 24px;
   }

   .tool-header .header-actions .btn {
      width: 100% !important;
      margin-top: 0 !important;
   }

   /* Tips bar */
   .tips {
      flex-direction: column;
      gap: 8px;
      padding: 12px 16px;
      text-align: center;
   }

   /* Helper text */
   .helper-text {
      font-size: 11px;
   }

   /* Messages */
   .message {
      font-size: 13px;
      padding: 10px 12px;
      margin-top: 16px;
   }

   /* Range input */
   .range-input {
      margin: 10px 0;
   }

   /* Skills grid */
   .skills-grid {
      gap: 6px;
   }
}