/* ============================================
   COMPACT ROI CALCULATOR - OPTIMIZED SPACING
   Minimal white space, maximum usability
   ============================================ */

.ln-new-roi-section {
  padding: 45px 0;
  background: #f5f1fd;
}

.ln-new-roi-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.ln-new-roi-header {
  text-align: center;
  margin-bottom: 24px;
}

.ln-new-roi-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.ln-new-roi-header p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

/* Main Grid - 40/60 Split (Services Left, Comparison Right) */
.ln-new-roi-calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  margin-bottom: 20px;
  align-items: start;
}

/* Left Side: Services Panel - 2 Column Grid */
.ln-new-roi-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}

/* Right Side: Comparison Tables + Savings */
.ln-new-roi-right {
  display: flex;
  flex-direction: column !important;
  gap: 16px;
}

/* Cost Comparison Container - Side by Side */
.ln-new-roi-comparison-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ln-new-roi-service-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ln-new-roi-service-card:hover {
  border-color: #673AB7;
  box-shadow: 0 4px 12px rgba(103, 58, 183, 0.08);
  transform: translateY(-2px);
}

.ln-new-roi-service-header {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.ln-new-roi-service-header h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header with toggle - right aligned */
.ln-new-roi-header-with-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ln-new-roi-header-with-toggle h3 {
  flex: 1;
}

.ln-new-roi-header-with-toggle .ln-new-toggle-switch {
  flex-shrink: 0;
  margin-left: 10px;
}

.ln-new-roi-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
  min-height: 36px;
}

.ln-new-roi-service-item:first-of-type {
  padding-top: 0;
}

.ln-new-roi-service-item:last-child {
  padding-bottom: 0;
}

.ln-new-roi-service-item:not(:last-child) {
  margin-bottom: 4px;
}

.ln-new-roi-service-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.ln-new-service-label {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Toggle Switch - Compact */
.ln-new-toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.ln-new-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ln-new-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.3s;
  border-radius: 18px;
}

.ln-new-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .ln-new-toggle-slider {
  background-color: #673AB7;
}

input:checked + .ln-new-toggle-slider:before {
  transform: translateX(16px);
}

/* Radio Button */
.ln-new-toggle-radio {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ln-new-toggle-radio input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ln-new-radio-custom {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ln-new-toggle-radio input:checked ~ .ln-new-radio-custom {
  background-color: #673AB7;
  border-color: #673AB7;
}

.ln-new-radio-custom:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.ln-new-toggle-radio input:checked ~ .ln-new-radio-custom:after {
  display: block;
}

/* Quantity Input - Compact */
.ln-new-qty-input {
  width: 80px;
  padding: 6px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  transition: all 0.3s ease;
}

.ln-new-qty-input:focus {
  outline: none;
  border-color: #673AB7;
  box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.1);
}

/* Right Side: Cost Comparison - Side by Side */
.ln-new-roi-right {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 14px;
  /* align-self: flex-start; */
  flex-direction: column;
}

/* Service Cards - Minimal Padding */
.ln-new-roi-cost-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  height: fit-content;
  position: relative;
}

.ln-new-roi-cost-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 3px 0;
}

.ln-new-roi-cost-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.ln-new-roi-cost-breakdown {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.ln-new-roi-cost-breakdown::-webkit-scrollbar {
  width: 4px;
}

.ln-new-roi-cost-breakdown::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 2px;
}

.ln-new-roi-cost-breakdown::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}

.ln-new-roi-cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #f9fafb;
  border-radius: 6px;
  font-size: 0.8125rem;
  transition: all 0.2s ease;
  position: relative;
}

.ln-new-roi-cost-item:hover {
  background: #f3f4f6;
}

.ln-new-roi-current-stack .ln-new-roi-cost-item {
  background: #fef2f2;
  /* border-left: 2px solid #fca5a5; */
}

.ln-new-roi-current-stack .ln-new-roi-cost-item:hover {
  background: #fee2e2;
}

.ln-new-roi-leadnest-cost .ln-new-roi-cost-item {
  background: #f3e8ff;
  /* border-left: 2px solid #a78bfa; */
}

.ln-new-roi-leadnest-cost .ln-new-roi-cost-item:hover {
  background: #e9d5ff;
}

.ln-new-roi-cost-item-name {
  color: #374151;
  font-weight: 500;
}

.ln-new-roi-current-stack .ln-new-roi-cost-item-name {
  color: #991b1b;
}

.ln-new-roi-leadnest-cost .ln-new-roi-cost-item-name {
  color: #5b21b6;
}

.ln-new-roi-cost-item-price {
  color: #1a1a1a;
  font-weight: 700;
}

.ln-new-roi-current-stack .ln-new-roi-cost-item-price {
  color: #dc2626;
}

.ln-new-roi-leadnest-cost .ln-new-roi-cost-item-price {
  color: #673AB7;
}

.ln-new-roi-cost-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #f9fafb;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
}

.ln-new-roi-cost-total span {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
}

.ln-new-roi-cost-total strong {
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 800;
}

/* Current Stack Styling - DANGER/EXPENSIVE Theme */
.ln-new-roi-current-stack {
  border-color: #fca5a5;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.ln-new-roi-current-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #ef4444, #dc2626); */
}

.ln-new-roi-current-stack h3 {
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ln-new-roi-current-stack h3::before {
  content: '⚠️';
  font-size: 1rem;
}

.ln-new-roi-current-stack .ln-new-roi-cost-total {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-color: #fca5a5;
}

.ln-new-roi-current-stack .ln-new-roi-cost-total strong {
  color: #dc2626;
}

/* LeadNest Cost Styling - SAFE/AFFORDABLE Theme */
.ln-new-roi-leadnest-cost {
  border-color: #a78bfa;
  background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.ln-new-roi-leadnest-cost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #673AB7, #7c3aed); */
}

.ln-new-roi-leadnest-cost h3 {
  color: #673AB7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ln-new-roi-leadnest-cost h3::after {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.ln-new-roi-leadnest-cost .ln-new-roi-cost-subtitle {
  color: #7c3aed;
  font-weight: 600;
}

.ln-new-roi-leadnest-cost .ln-new-roi-cost-total {
  background: linear-gradient(135deg, #673AB7, #7c3aed);
  border-color: #673AB7;
  box-shadow: 0 2px 8px rgba(103, 58, 183, 0.2);
}

.ln-new-roi-leadnest-cost .ln-new-roi-cost-total span,
.ln-new-roi-leadnest-cost .ln-new-roi-cost-total strong {
  color: #ffffff;
}

.ln-new-roi-leadnest-cost:hover {
  border-color: #8b5cf6;
  box-shadow: 0 4px 16px rgba(103, 58, 183, 0.15);
  transform: translateY(-2px);
}

/* Savings Summary - Clean and Subtle Design */
.ln-new-roi-savings-summary {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
}

.ln-new-roi-savings-summary:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.ln-new-roi-savings-content {
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

.ln-new-roi-savings-calculation {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.ln-new-roi-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #f9fafb;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.ln-new-roi-calc-row:hover {
  background: #f3f4f6;
}

.ln-new-roi-calc-savings-row {
  background: #f0fdf4;
  border: 1px solid #d1fae5;
}

.ln-new-roi-calc-savings-row:hover {
  background: #dcfce7;
}

.ln-new-roi-calc-label {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 600;
}

.ln-new-roi-calc-savings-row .ln-new-roi-calc-label {
  color: #059669;
  font-weight: 700;
}

.ln-new-roi-calc-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.ln-new-roi-calc-leadnest {
  color: #673AB7;
}

.ln-new-roi-calc-save {
  color: #10b981;
  font-size: 1.375rem;
}

.ln-new-roi-savings-yearly-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

.ln-new-roi-savings-yearly-text i {
  font-size: 0.875rem;
  color: #10b981;
}

.ln-new-btn-cta-primary {
  background: linear-gradient(135deg, #673AB7, #7c3aed) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 24px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(103, 58, 183, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.ln-new-btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(103, 58, 183, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ln-new-roi-left {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ln-new-roi-calculator-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ln-new-roi-comparison-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .ln-new-roi-calculator-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .ln-new-roi-left {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .ln-new-roi-comparison-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .ln-new-roi-savings-summary {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
  }
  
  .ln-new-btn-cta-primary {
    padding: 10px 20px !important;
    font-size: 0.8125rem !important;
  }
}

@media (max-width: 768px) {
  .ln-new-roi-section {
    padding: 30px 0;
    position: relative;
  }
  
  .ln-new-roi-container {
    padding: 0 16px;
    position: relative;
  }
  
  .ln-new-roi-header {
    margin-bottom: 20px;
  }
  
  .ln-new-roi-header h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .ln-new-roi-header p {
    font-size: 0.9375rem;
  }
  
  /* Stack everything vertically on mobile */
  .ln-new-roi-calculator-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 100vh;
    position: relative;
  }
  
  /* Service cards - single column on mobile */
  .ln-new-roi-left {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  /* Right side needs to be positioned for sticky to work */
  .ln-new-roi-right {
    position: relative;
    min-height: 400px;
  }
  
  /* Comparison tables - single column on mobile */
  .ln-new-roi-comparison-container {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .ln-new-roi-service-card {
    padding: 14px;
  }
  
  .ln-new-roi-service-header h3 {
    font-size: 0.875rem;
  }
  
  .ln-new-roi-service-item {
    padding: 7px 0;
    gap: 10px;
  }
  
  .ln-new-service-label {
    font-size: 0.8125rem;
  }
  
  .ln-new-qty-input {
    width: 75px;
    padding: 5px 6px;
    font-size: 0.75rem;
  }
  
  .ln-new-roi-cost-card {
    padding: 14px;
  }
  
  .ln-new-roi-cost-card h3 {
    font-size: 1rem;
  }
  
  .ln-new-roi-cost-breakdown {
    max-height: 200px;
  }
  
  .ln-new-roi-cost-item {
    padding: 5px 8px;
    font-size: 0.75rem;
  }
  
  .ln-new-roi-cost-total {
    padding: 10px 12px;
  }
  
  .ln-new-roi-cost-total span {
    font-size: 0.8125rem;
  }
  
  .ln-new-roi-cost-total strong {
    font-size: 1.125rem;
  }
  
  /* Sticky savings summary on mobile - sticks to bottom of viewport while in section */
  .ln-new-roi-savings-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    flex-direction: column;
    padding: 12px 16px 16px 16px;
    gap: 10px;
    align-items: center;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  /* Hide sticky summary when section is not in view */
  .ln-new-roi-section:not(.in-view) .ln-new-roi-savings-summary {
    display: none;
  }
  
  .ln-new-roi-savings-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .ln-new-roi-savings-calculation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 500px;
  }
  
  .ln-new-roi-calc-row {
    padding: 8px 6px;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }
  
  .ln-new-roi-calc-label {
    font-size: 0.6875rem;
    white-space: nowrap;
  }
  
  .ln-new-roi-calc-value {
    font-size: 1rem;
  }
  
  .ln-new-roi-calc-save {
    font-size: 1.125rem;
  }
  
  .ln-new-roi-savings-yearly-text {
    font-size: 0.6875rem;
    justify-content: center;
  }
  
  .ln-new-btn-cta-primary {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px !important;
    font-size: 0.875rem !important;
  }
}

@media (max-width: 480px) {
  .ln-new-roi-section {
    padding: 24px 0;
  }
  
  .ln-new-roi-container {
    padding: 0 12px;
  }
  
  .ln-new-roi-header {
    margin-bottom: 16px;
  }
  
  .ln-new-roi-header h2 {
    font-size: 1.375rem;
  }
  
  .ln-new-roi-header p {
    font-size: 0.875rem;
  }
  
  .ln-new-roi-calculator-grid {
    gap: 12px;
    padding-bottom: 0px; /* Space for sticky summary */
  }
  
  .ln-new-roi-left {
    gap: 8px;
  }
  
  .ln-new-roi-comparison-container {
    gap: 10px;
  }
  
  .ln-new-roi-service-card {
    padding: 12px;
  }
  
  .ln-new-roi-service-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  
  .ln-new-roi-service-header h3 {
    font-size: 0.8125rem;
    letter-spacing: 0.3px;
  }
  
  .ln-new-roi-service-item {
    padding: 6px 0;
    gap: 8px;
    min-height: 32px;
  }
  
  .ln-new-service-label {
    font-size: 0.75rem;
  }
  
  /* Smaller toggle on mobile */
  .ln-new-toggle-switch {
    width: 32px;
    height: 18px;
  }
  
  .ln-new-toggle-slider:before {
    height: 14px;
    width: 14px;
  }
  
  input:checked + .ln-new-toggle-slider:before {
    transform: translateX(14px);
  }
  
  .ln-new-qty-input {
    width: 70px;
    padding: 4px 6px;
    font-size: 0.6875rem;
  }
  
  .ln-new-roi-cost-card {
    padding: 12px;
  }
  
  .ln-new-roi-cost-card h3 {
    font-size: 0.9375rem;
  }
  
  .ln-new-roi-cost-subtitle {
    font-size: 0.6875rem;
  }
  
  .ln-new-roi-cost-breakdown {
    max-height: 180px;
    gap: 4px;
  }
  
  .ln-new-roi-cost-item {
    padding: 4px 7px;
    font-size: 0.6875rem;
  }
  
  .ln-new-roi-cost-total {
    padding: 8px 10px;
  }
  
  .ln-new-roi-cost-total span {
    font-size: 0.75rem;
  }
  
  .ln-new-roi-cost-total strong {
    font-size: 1rem;
  }
  
  /* Compact sticky savings on small mobile */
  .ln-new-roi-savings-summary {
    padding: 10px 12px;
    gap: 8px;
    /* margin: 0 -12px; */
    width: calc(100% + 24px);
  }
  
  .ln-new-roi-savings-calculation {
    gap: 6px;
    margin-bottom: 8px;
  }
  
  .ln-new-roi-calc-row {
    padding: 6px 4px;
  }
  
  .ln-new-roi-calc-label {
    font-size: 0.625rem;
  }
  
  .ln-new-roi-calc-value {
    font-size: 0.9375rem;
  }
  
  .ln-new-roi-calc-save {
    font-size: 1rem;
  }
  
  .ln-new-roi-savings-yearly-text {
    font-size: 0.625rem;
  }
  
  .ln-new-roi-savings-yearly-text i {
    font-size: 0.6875rem;
  }
  
  .ln-new-btn-cta-primary {
    padding: 10px 16px !important;
    font-size: 0.8125rem !important;
  }
  
  /* Adjust icon sizes for mobile */
  .ln-new-roi-current-stack h3::before {
    font-size: 0.875rem;
  }
  
  .ln-new-roi-leadnest-cost h3::after {
    width: 16px;
    height: 16px;
    font-size: 0.6875rem;
  }
}

@media (max-width: 360px) {
  .ln-new-roi-section {
    padding: 20px 0;
  }
  
  .ln-new-roi-calculator-grid {
    padding-bottom: 0px; /* Space for sticky summary */
  }
  
  .ln-new-roi-header h2 {
    font-size: 1.25rem;
  }
  
  .ln-new-roi-header p {
    font-size: 0.8125rem;
  }
  
  .ln-new-roi-service-card {
    padding: 10px;
  }
  
  .ln-new-roi-service-header h3 {
    font-size: 0.75rem;
  }
  
  .ln-new-service-label {
    font-size: 0.6875rem;
  }
  
  .ln-new-qty-input {
    width: 65px;
    font-size: 0.625rem;
  }
  
  .ln-new-roi-cost-card {
    padding: 10px;
  }
  
  .ln-new-roi-cost-card h3 {
    font-size: 0.875rem;
  }
  
  .ln-new-roi-cost-item {
    font-size: 0.625rem;
  }
  
  .ln-new-roi-savings-summary {
    padding: 8px 10px;
  }
  
  .ln-new-roi-calc-row {
    padding: 5px 3px;
  }
  
  .ln-new-btn-cta-primary {
    padding: 9px 14px !important;
    font-size: 0.75rem !important;
  }
}
