/* FO custom styling */

/* custom font 
@import url('https://fonts.cdnfonts.com/css/pp-neue-montreal');

body, html, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'PP Neue Montreal', sans-serif !important;                                                                                                  
   }
   
.navbar-static-top.navbar .menu-bar > .navbar-nav > li > a {
    font-family: 'PP Neue Montreal', sans-serif !important;
   }*/



/*remobe padding on second form column in phone display
@media (max-width: 767px) {
    html[dir=ltr] .crmEntityFormView .tab .tab-column {
    padding-left: 0px !important;
}
}*/


/* remove underline from logo */
a:has(.siteTitle):not(.btn):hover {
    text-decoration: none !important;
  }

/* remove border from forms and lists*/
.crmEntityFormView, .entitylist {
    border: none !important;
}

/*/remove dotted line on navbar*/
.navbar-dark .navbar-nav > li > a:focus {
    border: 1px solid transparent !important;
    outline: 1px solid transparent !important;
}

/*style navbar with underline*/
.static-top.navbar .menu-bar > .navbar-nav > li > a {
    background-color: white !important;
    border-bottom: 2px solid transparent !important;
    padding-bottom: 2px;
    text-decoration: none !important;
    color: black !important;
    transition: border-color 0.2s ease-in-out;
}

/* Hover and Active Page */
.static-top.navbar .menu-bar > .navbar-nav > li > a:hover,
.static-top.navbar .menu-bar > .navbar-nav > li > a[aria-current="page"] {
    border-bottom-color: #e20523 !important;
}

.text.form-control.readonly {
    padding-left: 0.375rem;
    background-color: transparent!important;
}

/* set border-radius on lookup buttons*/ 
.btn.btn-default.clearlookupfield, .btn.btn-default.launchentitylookup {
    line-height: 1.79;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: .375rem;
    border-bottom-right-radius: .375rem;
}

/*override bootstrap pagination colors*/
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover {
    background-color: #e20523 !important;
    color: white !important
}

.page-link {
    color: #e20523 !important;
}


/*remove top line from forms*/
.crmEntityFormView .tab-title {
    border-bottom: none!important;
}

/*Style bootstrap info button*/
  .btn-outline-info {
    color: #644c9a;
    border-color: #644c91;
  }

  .btn-outline-info:hover {
    background-color: #d63384;
    color: white;
    border-color: #d63384;
  }

  /*Modal*/
  .btn-close {
    font-size:35px!important
  }

  /*Boxes on my profile page*/
  .fo_custom-top-container {
    border-top: 1px solid grey;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: none;
   }

  .fo_custom-mid-container {
    border-top: none;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: none;
   }

  .fo_custom-bottom-container {
    border-top: none;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: 1px solid grey;
   }

   /*style textarea*/
   textarea.form-control {
    min-height: 10em!important; /* Approx 10 lines; adjust as needed */
  }

  /*Picklist horizontal */
   .crmEntityFormView .cell .picklist label {
    padding-right: 10px;
  }

   /*Footer styling*/
  .global-footer {
    color: white;
    font-family: Arial, sans-serif;
    padding: 40px 0;
  }

  .footer-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .footer-detail i {
    margin-right: 12px;
    font-size: 18px;
    line-height: 1.5;
  }

  .footer-nav {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }

  .footer-nav li {
    margin-bottom: 8px;
  }

  .footer-nav a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
  }

  .follow-links ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 40px;
  }

  .follow-links i {
    font-size: 22px;
    color: white;
    transition: color 0.3s;
  }

  .follow-links i:hover {
    color: #ccc;
  }



