/* SmartToolsHub - SIP Calculator - main.css */
/* No internal/inline CSS on page; all styles here */

:root {
  --navy-50: #f0f4f8;
  --navy-100: #d9e2ec;
  --navy-200: #bcccdc;
  --navy-300: #9fb3c8;
  --navy-400: #829ab1;
  --navy-500: #627d98;
  --navy-600: #486581;
  --navy-700: #334e68;
  --navy-800: #243b53;
  --navy-900: #102a43;
  --navy-950: #0a1929;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--slate-50);
  color: var(--navy-900);
  margin: 0;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Layout */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Nav */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(16, 42, 67, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .nav-inner { height: 5rem; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
}

.nav-logo:hover { color: var(--white); }

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(6deg);
}

.nav-logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
}

.nav-link:hover { color: var(--white); }

.nav-link.active { color: var(--white); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-500);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }

#mobile-menu {
  display: none;
  background: rgba(16, 42, 67, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

#mobile-menu.show { display: block; }

@media (min-width: 1024px) {
  #mobile-menu { display: none !important; }
}

.mobile-menu-inner {
  padding: 1rem;
}

.mobile-menu-inner a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--white);
  text-decoration: none;
}

.mobile-menu-inner a:hover,
.mobile-menu-inner a.active { background: rgba(255,255,255,0.1); }

/* Hero */
.hero-bg {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  margin-bottom: 1.5rem;
}

.hero-badge svg { width: 1rem; height: 1rem; color: var(--teal-400); }
.hero-badge span { color: var(--teal-400); font-size: 0.875rem; font-weight: 500; }

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--navy-200);
  margin: 0;
  line-height: 1.6;
}

/* Ad */
.ad-banner {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.ad-banner .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.ad-placeholder {
  height: 6rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-500);
  background: repeating-linear-gradient(45deg, var(--slate-100), var(--slate-100) 10px, var(--slate-200) 10px, var(--slate-200) 20px);
}

.sip-result-cards {
  margin-bottom: 1.5rem;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.table-actions-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.table-actions .card-title.m0 { margin: 0; }

.footer-bottom p { margin: 0; }

/* Section */
.section {
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 3rem 0; }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 1rem;
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--slate-100);
}

/* Grid */
.sip-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .sip-grid { grid-template-columns: 1fr 2fr; gap: 2rem; }
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

/* Form */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-600);
  margin-bottom: 0.25rem;
}

.form-input {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--navy-900);
}

.form-input:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.form-input::placeholder { color: var(--navy-400); }

.input-prefix { position: relative; }
.input-prefix .prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-500);
  pointer-events: none;
}
.input-prefix .form-input { padding-left: 2rem; }

/* Button */
.btn-primary {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(20, 184, 166, 0.4);
}

/* Result summary */
.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .result-grid { grid-template-columns: repeat(4, 1fr); }
}

.result-box {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid;
}

.result-box.emi-box {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.2);
}

.result-box.gray-box {
  background: var(--slate-50);
  border-color: var(--slate-100);
}

.result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-500);
  margin-bottom: 0.25rem;
}

.result-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.result-box.emi-box .result-value { color: var(--teal-600); }
.result-box.gray-box .result-value { color: var(--navy-900); font-weight: 600; }

/* Chart container */
.chart-wrap {
  height: 16rem;
  position: relative;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

.sip-table {
  width: 100%;
  min-width: 500px;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.sip-table th {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--slate-200);
  color: var(--navy-600);
  font-weight: 500;
}

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

.sip-table tbody tr:hover { background: var(--slate-50); }

.table-actions select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.table-actions .btn-export {
  padding: 0.5rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--white);
  cursor: pointer;
}

.table-actions .btn-export:hover { background: var(--slate-50); }

.table-note {
  font-size: 0.75rem;
  color: var(--navy-500);
  margin-top: 0.5rem;
}

/* Prose / formula */
.prose {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--navy-600);
}

.prose-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  text-align: center;
  margin: 0 0 2rem;
}

.prose p { margin: 0 0 1rem; }
.prose pre {
  background: var(--navy-50);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  overflow-x: auto;
  margin: 0 0 1rem;
}

/* Footer */
.footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 1.5rem; height: 1.5rem; color: var(--white); }
.footer-logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--navy-300);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover { color: var(--teal-400); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  color: var(--navy-400);
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(16, 42, 67, 0.15);
}

/* Custom radio buttons - application-wide */
input.radio-custom {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--navy-300);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
input.radio-custom:hover {
  border-color: var(--teal-500);
}
input.radio-custom:checked {
  border-color: var(--teal-500);
  background: var(--teal-500);
}
input.radio-custom:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  background: var(--white);
  border-radius: 50%;
}
input.radio-custom:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.3);
}

/* Attractive checkbox - application-wide */
input.checkbox-custom {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--navy-300);
  border-radius: 0.375rem;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
input.checkbox-custom:hover {
  border-color: var(--teal-500);
}
input.checkbox-custom:checked {
  border-color: var(--teal-500);
  background: var(--teal-500);
}
input.checkbox-custom:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.35rem;
  height: 0.6rem;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
}
input.checkbox-custom:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.3);
}

/* Upload zone - drag and drop */
.upload-zone {
  border: 2px dashed var(--slate-200);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--slate-50);
}
.upload-zone:hover,
.upload-zone.dragover,
.upload-zone.upload-zone-dragover {
  border-color: var(--teal-500);
  background: rgba(20, 184, 166, 0.06);
}
.upload-zone .upload-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  color: var(--navy-400);
}
.upload-zone:hover .upload-icon,
.upload-zone.dragover .upload-icon,
.upload-zone.upload-zone-dragover .upload-icon {
  color: var(--teal-500);
}
.upload-zone .upload-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-600);
}
.upload-zone .upload-hint {
  font-size: 0.8125rem;
  color: var(--navy-400);
  margin-top: 0.25rem;
}
.upload-zone input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

/* Utility tools */
.utility-textarea {
  min-height: 12rem;
  resize: vertical;
}
.utility-output {
  min-height: 8rem;
  resize: vertical;
}
.utility-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .utility-result-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .utility-result-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Quiz page */
.quiz-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .quiz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .quiz-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.quiz-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quiz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(16, 42, 67, 0.12);
  border-color: var(--slate-200);
}
.quiz-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-600) 100%);
}
.quiz-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}
.quiz-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.375rem;
}
.quiz-card-desc {
  font-size: 0.875rem;
  color: var(--navy-500);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quiz-btn-start {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  background: var(--teal-500);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.quiz-btn-start:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
}
.quiz-runner-wrap {
  display: none;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.quiz-runner-wrap.active {
  display: block;
}
.quiz-list-wrap {
  display: none;
}
.quiz-list-wrap.active {
  display: block;
}
.quiz-runner {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
@media (min-width: 640px) {
  .quiz-runner { padding: 2rem 2.25rem; }
}
.quiz-runner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 1rem;
}
.quiz-progress-wrap {
  margin-bottom: 1.5rem;
}
.quiz-progress-bar {
  height: 0.375rem;
  background: var(--slate-200);
  border-radius: 9999px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--teal-500);
  border-radius: 9999px;
  transition: width 0.3s ease;
}
.quiz-progress-text {
  font-size: 0.8125rem;
  color: var(--navy-500);
  margin-top: 0.375rem;
}
.quiz-question-text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 2px solid var(--slate-200);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-option:hover {
  border-color: var(--teal-400);
  background: rgba(20, 184, 166, 0.05);
}
.quiz-option.selected {
  border-color: var(--teal-500);
  background: rgba(20, 184, 166, 0.08);
}
.quiz-option input {
  flex-shrink: 0;
}
.quiz-option-label {
  font-size: 0.9375rem;
  color: var(--navy-700);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
}
.quiz-btn-back {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--slate-200);
  color: var(--navy-600);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.quiz-btn-back:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
}
.quiz-btn-next {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--teal-500);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.quiz-btn-next:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
}
.quiz-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.quiz-result-wrap {
  display: none;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.quiz-result-wrap.active {
  display: block;
}
.quiz-result-box {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  text-align: center;
}
.quiz-result-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 0.75rem;
}
.quiz-result-desc {
  font-size: 0.9375rem;
  color: var(--navy-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.quiz-result-quiz-name {
  font-size: 0.8125rem;
  color: var(--navy-400);
  margin-bottom: 1rem;
}
.quiz-btn-retake {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--teal-500);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.quiz-btn-retake:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
