/* Custom styles for enhanced calculator */

/* Body styles to accommodate fixed footer */
body {
  padding-bottom: 60px; /* Add space for fixed copyright footer */
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0161ff;
  z-index: 1000;
}

.logo-container {
  padding: 10px 20px;
  width: 100%;
}

.logo-container img {
  max-width: 250px;
  max-height: 35px;
  margin-right: 15px;
}

.header-nav {
  display: flex;
  margin-left: 20px;
}

.nav-link {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-link i {
  margin-right: 5px;
}

.dropdown-toggle::after {
  margin-left: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-bottom: 0;
  border-left: 0;
  width: 6px;
  height: 6px;
  transform: rotate(135deg);
  vertical-align: middle;
}

.dropdown-toggle.show::after {
  transform: rotate(-45deg);
}

.dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}

.dropdown-menu {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: none;
  padding: 0;
  min-width: 200px;
}

.dropdown-item {
  padding: 10px 15px;
  color: #182966;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #f4f5f7;
  color: #0161ff;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.mobile-menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* Breadcrumbs Styles */
.breadcrumbs-container {
  padding: 10px 20px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  position: fixed;
  top: 62px; /* Position below the fixed header (55px + 2px buffer) */
  left: 0;
  width: 100%;
  z-index: 999; /* Ensure it stays above other content */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Add subtle shadow for visual separation */
}

/* Padding for fixed elements is applied to the main body selector below */

/* Reset the top margin that might be causing additional spacing */
.container.mt-4 {
  margin-top: 0 !important;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.breadcrumb-item {
  color: #0161ff;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
  font-weight: 500;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #6c757d;
}

.breadcrumb-item i {
  font-size: 16px;
}

.breadcrumb-actions {
  margin-left: auto;
}

.breadcrumb-action {
  color: #0E2439;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-action:hover {
  color: #0161ff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 12px;
  }

  .breadcrumb-action {
    font-size: 12px;
  }
}

/* Mobile menu styles */
.mobile-menu {
  display: none;
  position: absolute;
  top: 55px;
  right: 0;
  width: 250px;
  background-color: #0161ff;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  border-radius: 0 0 0 8px;
}

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

.mobile-menu a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

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

/* Always hide header nav and show mobile menu toggle */
.header-nav {
  display: none;
}

/* Copyright section - always stick to bottom of viewport */
.copyright {
  color: #a9a9a9;
  background-color: #fafafa;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.6;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.footer-bottom {
  justify-content: center;
  align-items: center;
  line-height: 24px;
  display: flex;
}

.text-block-2 {
  text-align: center;
  flex: 0 auto;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .logo-container img {
    max-width: 180px;
  }
}

/* Style for print button in Transaction Summary */
h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h2 .header-link, h3 .header-link {
  display: inline-flex;
  font-size: 14px;
  color: #182966;
  vertical-align: middle;
  margin-left: auto;
}

h2 .header-link:hover, h3 .header-link:hover {
  color: #07b2fa;
  text-decoration: underline;
}

/* Adjust body padding to account for fixed header and breadcrumbs */
body {
  padding-top: 115px; /* Combined height of header (55px) + breadcrumbs (40px) + buffer (20px) */
  font-family: 'Roboto', sans-serif;
  background-color: #f4f5f7;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

h1, h2, h3, label {
  color: #0E2439;
  font-weight: 500;
}

h1 {
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

/* Target only form-groups that are not using row class (closing cost calculator) */
.form-group:not(.row) {
  display: flex;
  flex-direction: column;
}

.form-group:not(.row) > label {
  margin-bottom: 0.5rem;
}

.input-group-text {
  background-color: #e9ecef;
  border-color: #ced4da;
  height: calc(1.5em + 0.75rem + 2px); /* Match Bootstrap's default form-control height */
  display: flex;
  align-items: center;
}

.form-control {
  border-radius: 3px;
  border: 1px solid #ced4da;
}

/* Fields with Left Add-ons */
.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:last-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* Fields with Right Add-ons */
.input-group > .input-group-append > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* Specific fix for Down Payment Percentage field's addon */
#downPaymentPercentage + .input-group-append > .input-group-text {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.input-group > .form-control:not(:first-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.btn {
  border-radius: 1000px;
  padding: 10px 20px;
  border: 0;
}

/* Calculate Button */
.btn-primary {
  background-color: #182966;
  border: 0;
  color: #fff;
}

.btn-primary:hover {
  background-color: #07b2fa;
  color: #fff;
}

.btn-primary:active,
.btn-primary:focus {
  background-color: #07b2fa;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(7, 178, 250, 0.5);
}

/* Reset Button */
.btn-secondary {
  background-color: #efefef;
  border: 0;
  color: #212529;
}

.btn-secondary:hover {
  background-color: #091e4221;
  color: #212529;
}

.btn-secondary:active,
.btn-secondary:focus {
  background-color: #091e4221;
  color: #212529;
  box-shadow: 0 0 0 3px rgba(9, 30, 66, 0.1);
}

.btn-secondary:not(:disabled):not(.disabled):active:focus{
  background-color: #efefef;
  color: #212529;
  box-shadow: 0 0 0 3px rgba(9, 30, 66, 0.1);
}

.btn-secondary:not(:disabled):not(.disabled):active{
  background-color: #545b62;
}

/* Share Button */
.btn-info {
  background-color: #17a2b8;
  border: 0;
  color: #fff;
}

.btn-info:hover {
  background-color: #138496;
  color: #fff;
}

.btn-info:active,
.btn-info:focus {
  background-color: #138496;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

.actions-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary {
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.summary p {
  margin: 0;
  padding: 5px 0;
}

.card {
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 30px;
}

.card-body {
  padding: 20px;
}

/* Transaction Type Styling */
#transactionType {
  font-weight: 500;
  cursor: pointer;
}

/* Fee Details Styling */
.fee-category {
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.fee-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.3s;
}

.fee-category-header:hover {
  background-color: #e9ecef;
}

.fee-category-header h3 {
  margin: 0;
  font-size: 1.17rem;
  color: #182966;
  font-weight: 500;
}

.fee-category-header i {
  transition: transform 0.3s;
}

.fee-category-content {
  padding: 15px;
  background-color: #fff;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.fee-item:last-child {
  border-bottom: none;
}

.fee-name {
  color: #495057;
}

.fee-amount {
  color: #182966;
  text-align: right !important;
  flex: 1;
}

/* Removed problematic CSS rule */

.total-summary {
  margin-top: 20px;
  border-top: 2px solid #182966;
}

.total-summary .fee-header {
  border-top: none;
  border-bottom: 1px solid #dee2e6;
  width: 100%;
}

.total-summary .fee-header h3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}

.total-summary .fee-header .fee-amount {
  margin-left: auto;
  padding-right: 10px;
}

.total-summary .fee-item {
  font-size: 1.2em;
  font-weight: bold;
}

.total-summary .fee-amount {
  font-size: 1.2em;
}

.fee-total {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: #f8f9fa;
  font-weight: bold;
  border-top: 2px solid #dee2e6;
}

/* Fee header styles */
.fee-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.3s;
}

.fee-header:hover {
  background-color: #e9ecef;
}

.fee-header h3 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.fee-header .fas {
  font-size: 12px;
}

.fee-section {
  margin-bottom: 30px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.fee-details {
  padding: 15px;
  background-color: #fff;
}

.collapse {
  transition: height 0.3s ease;
}

.collapse:not(.show) {
  display: none;
}

.collapse.show {
  display: block;
}

/* Responsive Styles */
.property-details {

/* Custom Notification Styles */
.custom-notification-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  width: 300px;
  max-width: 90%;
}

.custom-notification {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  padding: 15px;
  transform: translateX(110%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: flex-start;
}

.custom-notification.show {
  transform: translateX(0);
}

.custom-notification-icon {
  margin-right: 12px;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.custom-notification-content {
  flex-grow: 1;
}

.custom-notification-title {
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #0E2439;
  font-size: 14px;
}

.custom-notification-message {
  margin: 0;
  color: #495057;
  font-size: 13px;
}

.custom-notification-close {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  margin-left: 10px;
  line-height: 1;
  align-self: flex-start;
}

.custom-notification-close:hover {
  color: #343a40;
}

/* Notification types */
.custom-notification.success {
  border-left: 4px solid #28a745;
}

.custom-notification.success .custom-notification-icon {
  color: #28a745;
}

.custom-notification.error {
  border-left: 4px solid #dc3545;
}

.custom-notification.error .custom-notification-icon {
  color: #dc3545;
}

.custom-notification.warning {
  border-left: 4px solid #ffc107;
}

.custom-notification.warning .custom-notification-icon {
  color: #ffc107;
}

.custom-notification.info {
  border-left: 4px solid #17a2b8;
}

.custom-notification.info .custom-notification-icon {
  color: #17a2b8;
}

  max-width: 25%;
  flex: 0 0 25%;
  padding-right: 15px;
}

.buttons-summary {
  max-width: 25%;
  flex: 0 0 25%;
  padding-left: 15px;
}

#feeDetailsSection {
  margin-top: 2rem; /* 30px equivalent */
}

.loan-details {
  max-width: calc(50% - 30px);
  flex: 0 0 calc(50% - 30px);
}

/* Advertisement Styles */
.advertisement-container {
  padding: 0;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  aspect-ratio: 1/1;
}

.card.mb-4 .advertisement-container {
  width: 100%;
  height: 100%;
}

.ad-link {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease;
}

.card.mb-4 .ad-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.ad-link:hover {
  opacity: 0.9;
}

.ad-placeholder {
  width: 250px;
  height: 250px;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #666;
  border: 1px dashed #ccc;
  margin: 0 auto;
  position: relative;
}

/* Skeleton Loader Styles */
.skeleton-loader {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
  min-height: 250px;
}

.skeleton-loader::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.ad-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  color: #999;
}

.ad-message {
  font-size: 18px;
  font-weight: bold;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.5in;
  }

  html, body {
    height: auto !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: white !important;
    font-size: 12pt !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  * {
    box-sizing: border-box !important;
  }

  header, 
  .actions-container, 
  #calculateButton, 
  #resetButton, 
  #shareButton,
  #printButton,
  .property-details,
  .loan-details,
  .buttons-summary,
  .calculator-introduction,
  footer,
  .disclaimer,
  .advertisement-container {
    display: none !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  #feeDetailsSection {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    page-break-before: avoid !important;
    break-before: avoid !important;
    overflow: visible !important;
  }

  .card {
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    overflow: visible !important;
  }

  .card-body {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .collapse {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }

  h2 .header-link {
    display: none !important;
  }

  .fee-header i {
    display: none !important;
  }

  .row {
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    overflow: visible !important;
  }

  .col-12 {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .fee-section {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    margin-bottom: 15px !important;
    border: none !important;
    overflow: visible !important;
  }

  .fee-header {
    padding: 10px 0 !important;
    background-color: transparent !important;
    border-bottom: 1px solid #ddd !important;
  }

  .fee-details {
    padding: 10px 0 !important;
  }

  .total-summary {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    border-top: 2px solid #000 !important;
    margin-top: 20px !important;
    padding-top: 10px !important;
  }

  .fee-item {
    margin-bottom: 5px !important;
  }
  
  /* Professional print styles for the new print layout */
  .print-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .header {
    padding: 15px 0 !important;
    margin-bottom: 15px !important;
  }
  
  .logo {
    font-size: 20pt !important;
    font-weight: bold !important;
    color: #000066 !important;
  }
  
  .date {
    font-size: 10pt !important;
  }
  
  h1 {
    font-size: 18pt !important;
    margin-bottom: 15px !important;
    color: #000066 !important;
  }
  
  h2 {
    font-size: 14pt !important;
    margin: 20px 0 10px 0 !important;
    color: #000066 !important;
  }
  
  .summary-box {
    background-color: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    margin-bottom: 15px !important;
    page-break-inside: avoid !important;
  }
  
  .two-column {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    page-break-inside: avoid !important;
  }
  
  .column {
    width: 48% !important;
  }
  
  table {
    width: 100% !important;
    margin-bottom: 15px !important;
    page-break-inside: avoid !important;
  }
  
  th, td {
    padding: 8px !important;
  }
  
  .total-row td {
    border-top: 2px solid #000066 !important;
    font-weight: bold !important;
  }
  
  .footer {
    margin-top: 30px !important;
    border-top: 1px solid #ddd !important;
    font-size: 8pt !important;
    color: #666 !important;
    text-align: center !important;
  }
  
  .section {
    margin-bottom: 20px !important;
    page-break-inside: avoid !important;
  }
}

.loan-details .card-body {
  overflow: hidden;
}

.loan-details h2 {
  width: 100%;
}

.loan-details .row {
  margin-left: -10px;
  margin-right: -10px;
}

.loan-details .col-md-6,
.loan-details .col-md-12 {
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .col-md-7, .col-md-4 {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0;
  }

  .fee-item {
    flex-direction: column;
  }

  .fee-name {
    margin-bottom: 5px;
  }
}

/* Print Styles */
/* Disclaimer styling */
.disclaimer {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.calculator-introduction {
  margin-bottom: 30px;
  color: #495057;
  line-height: 1.6;
}

footer {
  margin-top: 50px;
  padding-bottom: 30px;
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/*Chevron Spacing and Animation*/
i.bi-chevron-right, i.bi-chevron-down, i.bi-chevron-up {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Use bi-chevron-right as base and add rotation class for state changes */
i.bi-chevron-right {
    transform: rotate(-90deg);  /* Default state (collapsed) - points right */
}

/* Rotation class for expanded state */
i.bi-chevron-right.rotated {
    transform: rotate(90deg); /* Rotates to point left when section is expanded */
}

/* Keep other states for compatibility but ensure they don't interfere */
i.bi-chevron-down {
    transform: rotate(-90deg);  /* Points down when section is closed */
}

i.bi-chevron-up {
    transform: rotate(90deg); /* Points up when section is expanded */
}

/* Custom tax field styles - using default border */


.card-header {
  background-color: transparent;
}

/* Added to ensure right alignment of fee amounts */
.fee-amount {
  text-align: right;
}

/* Specific rules for elements that need stronger right alignment */
#loanDetailsDownPayment, #homeownersInsuranceAnnual {
  text-align: right !important;
  width: auto !important;
}

.homeownersInsuranceAnnual, .loanDetailsDownPayment {
  text-align: right;
}

/* Inline Editing Styles */
.edit-icon {
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
  font-size: 12px !important;
  margin-left: 8px;
}

.fee-amount:hover .edit-icon {
  opacity: 1;
}

.edit-input {
  border: 1px solid #007bff;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 14px;
  width: 100px;
  margin-right: 5px;
}

.edit-input:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.save-edit-btn, .cancel-edit-btn {
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 3px;
  margin: 0 1px;
}

.save-edit-btn {
  background-color: #182966;
  border-color: #182966;
  color: white;
}

.save-edit-btn:hover {
  background-color: #0d1a3d;
  border-color: #0d1a3d;
  color: white;
}

.cancel-edit-btn {
  background-color: #dc3545;
  border-color: #dc3545;
  color: white;
}

.cancel-edit-btn:hover {
  background-color: #c82333;
  border-color: #bd2130;
  color: white;
}

/* Ensure edit icons don't interfere with layout */
.fee-amount {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  width: 100%;
}

/* Inline editing input styling */
.edit-input {
  text-align: right;
}

/* Mobile responsive adjustments for inline editing */
@media (max-width: 768px) {
  .edit-input {
    width: 80px;
    font-size: 12px;
    text-align: right;
  }
  
  .save-edit-btn, .cancel-edit-btn {
    padding: 1px 4px;
    font-size: 10px;
  }
  
  .edit-icon {
    font-size: 10px !important;
    margin-left: 5px;
  }
}