/* otp design style end */
.tabform-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 8px;
  font-size: 14px;
  border-radius: 5px;
}

.tabform-btn.active {
  background-color: var(--secondary-part);
  color: white;
}

.tabform-btn:hover {
  opacity: 0.85;
}

.tabform-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.tabform-input {
  border: 1px solid var(--secondary-part);
  border-radius: 15px;
  background-color: #fff;
  color: #040667;
  padding: 0.3rem 0.5rem;
  font-size: 14px;
  /* height: 38px; */
}

.tabform-input:focus {
  border-color: var(--secondary-part);
  box-shadow: 0 0 0 0.15rem rgba(82, 196, 26, 0.25);
  color: #040667;
}
.form-floating {
  margin: 10px 0px;
}
.tabform-floating .ant-select:not(.ant-select-empty) + label,
.tabform-floating .ant-select-focused + label {
  top: 0.4em !important;
  height: 40% !important;
  left: 2em;
}
.form-floating > label {
  top: -1.1em !important;
  color: var(--primary) !important;
  left: 1em !important;
  padding: 0.1rem 0.5rem !important;
  height: 28px !important;
  border-radius: 10px !important;
  background-color: #fff !important;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:focus ~ label {
  color: var(--secondary-part);
  font-weight: 700;
  transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
}
input.tabform-input,
select.tabform-input,
textarea.tabform-input {
  border: 1px solid var(--secondary-part) !important;
  border-radius: 15px !important;
  background-color: #fff !important;
  color: #040667;
  padding: 0.3rem 0.5rem !important;
  font-size: 14px;
  height: 56px;
}

.tabform-floating .ant-select {
  width: 100% !important;
  border-radius: 15px;
  background-color: #fff;
  font-size: 14px;
  height: 55px !important;
  color: #040667;
  position: relative;
}
@media (max-width: 768px) {
  .form-floating {
    margin: 0 0 !important;
  }
  .tabform-floating .ant-select {
    height: 39px !important;
  }
  .tabform-floating .ant-select .ant-select-selector {
    height: 33px !important;
  }
  .tabform-floating .ant-select {
    font-size: 12px !important;
  }
  /* .ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
    height: 32px !important;
  } */
  input.tabform-input,
  select.tabform-input,
  textarea.tabform-input {
    font-size: 12px !important;
    height: 39px !important;
  }
}

.tabform-floating .ant-select-selector {
  height: 45px !important;
  padding: 0.3rem 0.5rem !important;
  border: none !important;
  border-radius: 25px !important;
  display: flex;
  align-items: center;
  background-color: #fff !important;
  color: #040667 !important;
  box-shadow: none !important;
}

.ant-select-single .ant-select-arrow {
  right: 10px;
  color: #040667;
  font-size: 12px;
  z-index: 10;
}

.tabform-floating .ant-select:not(.ant-select-empty) + label,
.tabform-floating .ant-select-focused + label {
  transform: scale(0.85) translateY(-1.2rem) translateX(0.15rem);
  background: #fff;
  border-radius: 5px;
  padding: 0 4px;
  z-index: 2;
}

.tabform-floating .ant-select-selection-item {
  line-height: 1.5;
  color: #040667 !important;
}

.ant-select-dropdown {
  z-index: 1050 !important;
}

.tabform-floating .ant-select-focused .ant-select-selector,
.tabform-floating .ant-select-open .ant-select-selector {
  border-color: none !important;
  box-shadow: none !important;
}

.tabform-floating label {
  z-index: 1;
  background: transparent;
  padding: 0 4px;
  position: absolute;
  top: 8px;
  left: 12px;
  color: #040667;
  font-weight: 700;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tabform-floating .form-control:focus + label,
.tabform-floating .form-control:not(:placeholder-shown) + label {
  background: transparent !important;
}

/* Sidebar */
#sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 250px;
  background: #040667;
  color: #fff;
  padding-top: 20px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 1000;
}
#sidebar.hide {
  transform: translateX(-250px);
}
#sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
#sidebar ul.side-menu {
  list-style: none;
  padding: 0 10px;
}
#sidebar ul.side-menu.top li,
#sidebar ul.side-menu.bottom li {
  margin-bottom: 10px;
}
#sidebar ul.side-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #ccc;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  font-size: 0.9rem;
}
#sidebar ul.side-menu li.active a,
#sidebar ul.side-menu li a:hover {
  background: #fff;
  color: var(--secondary-part);
  font-weight: 700;
}
#sidebar ul.side-menu li a i {
  font-size: 1.2rem;
  min-width: 25px;
  background: #040667;
  padding: 6px;
  border-radius: 5px;
  box-shadow: 0 1px 4px 1px var(--secondary-part);
  text-align: center;
}
/* Content */
#content {
  margin-left: 250px;
  padding: 20px;
  transition: margin-left 0.3s ease;
}
#sidebar.hide ~ #content {
  margin-left: 0;
}
/* Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}
nav i.bx-menu {
  font-size: 1.6rem;
  cursor: pointer;
  color: #111;
}
nav .nav-link {
  font-weight: 600;
  color: #555;
  text-decoration: none;
  margin-left: 20px;
  flex-grow: 1;
}
nav form {
  position: relative;
  flex-grow: 2;
  max-width: 400px;
  margin-left: 20px;
}
nav form .form-input {
  display: flex;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
nav form input[type="search"] {
  border: none;
  padding: 8px 15px;
  flex-grow: 1;
  font-size: 1rem;
  outline: none;
}
nav form button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 15px;
  color: #666;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav form.show {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  color: #111;
  padding: 10px;
}
/* Dark mode toggle */
.switch-lm {
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 25px;
  background: #ccc;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  margin-left: 20px;
  flex-shrink: 0;
}
.switch-lm i {
  color: #f39c12;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.switch-lm i.bx-sun {
  color: #f39c12;
}
.switch-lm .ball {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: white;
  border-radius: 50%;
  transition: 0.3s ease all;
}
.switch-lm.checked .ball {
  left: 28px;
}
/* Notification and profile */
.notification,
.profile {
  position: relative;
  margin-left: 15px;
  cursor: pointer;
  color: #555;
  user-select: none;
}
.notification .num {
  position: absolute;
  top: -5px;
  right: -8px;
  background: red;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  padding: 2px 6px;
}
.notification-menu,
.profile-menu {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  width: 220px;
  display: none;
  z-index: 10000;
  color: #111;
}
.notification-menu.show,
.profile-menu.show {
  display: block;
}
.notification-menu ul,
.profile-menu ul {
  list-style: none;
  padding: 10px;
}
.notification-menu ul li,
.profile-menu ul li {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  cursor: default;
}
.profile-menu ul li a {
  text-decoration: none;
  color: #333;
  display: block;
}
.profile-menu ul li:last-child {
  border-bottom: none;
}
.profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
/* Main content */
main {
  max-width: 1200px;
  margin: auto;
}
.head-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.head-title .left h1 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #777;
}
.breadcrumb li a {
  color: #555;
  text-decoration: none;
}
.breadcrumb li i {
  color: #999;
}
.breadcrumb li .active {
  font-weight: 700;
  color: #111;
}
@media (max-width: 768px) {
  .login-signin-logo {
    height: 60px !important;
  }
  .form-floating > label {
    display: contents;
    max-width: 95%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
  }
  #translate-wrapper {
    width: 100px !important;
  }
  #content {
    margin-left: 0px !important;
    overflow-y: hidden;
  }
  #sidebar {
    width: 150px !important;
    display: none !important;
  }
  .input-field label {
    font-size: 12px !important;
  }
  .cta-filled {
    font-size: 12px !important;
  }
}

.custom-arrow-nsure:hover {
  background: var(--primary);
}
.cta-nsure {
  border-radius: 10px;
  padding: 10px 15px;
  text-transform: uppercase;
  background-color: transparent;
  cursor: pointer;
}

/* otp design style start */

.otp-Form {
  width: 400px;
  height: 330px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 20px;
  position: relative;
  /* box-shadow: 0px 0px 20px #e4efff; */
  border-radius: 10px;
}

.otp-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
/* Hide close icon */
.otp-modal-wrapper .ant-modal-close {
  display: none;
}

/* Hide background overlay if needed */
.otp-modal-wrapper ~ .ant-modal-mask {
  display: none !important;
}

/* Make sure modal content is centered */
.otp-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.mainHeading {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
}

.otpSubheading {
  font-size: 1rem;
  color: #000;
  line-height: 17px;
  font-weight: 600;
  text-align: center;
}

.inputContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.otp-input {
  background-color: rgb(228, 228, 228);
  width: 50px;
  height: 50px;
  text-align: center;
  border: none;
  border-radius: 7px;
  caret-color: rgb(127, 129, 255);
  color: rgb(44, 44, 44);
  outline: none;
  font-weight: 600;
}

.otp-input:focus,
.otp-input:valid {
  background-color: rgba(127, 129, 255, 0.199);
  transition-duration: 0.3s;
}

.verifyButton {
  width: 40%;
  padding: 6px 5px;
  border: none;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition-duration: 0.2s;
}

.verifyButton:hover {
  background-color: #030436;
  transition-duration: 0.2s;
}
.next-arrow-nsure {
  right: 10px;
}

.prev-arrow-nsure {
  left: 10px;
}
.prev-arrow-nsure img {
  width: 16px;
  height: 16px;
}

/* Right Arrow Image */
.next-arrow-nsure img {
  width: 20px;
  height: 20px;
}
.fixed-header {
  position: fixed;
  width: 100%;
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-top: 6px;
  padding-bottom: 0px;
}

@media (max-width: 768px) {
  .next-arrow-nsure img {
    width: 15px !important;
    height: 15px !important;
  }
  .custom-arrow-nsure {
    width: 25px !important;
    height: 25px !important;
  }
  .prev-arrow-nsure img {
    width: 10px !important;
    height: 10px !important;
  }
  .fixed-header {
    top: 0;
  }
  .banner-image-nsure {
    height: 50vh;
  }
}

.banner-slider-nsure {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.desktop-slider {
  display: block;
}

.mobile-slider {
  display: none;
}

@media (max-width: 767px) {
  .desktop-slider {
    display: none;
  }

  .mobile-slider {
    display: block;
  }
}

.banner-image-nsure {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

/* Arrows */
.custom-arrow-nsure {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 35px;
  height: 35px;
  background: #3fbe00;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .faq-nsure-title {
    font-size: 20px;
  }
}

.faq-nsure-title {
  font-weight: 600;
  font-size: 24px;
  color: #040667;
}

.faq-nsure-search {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 10px 20px;
  border: 1px solid #ccc;
}

.faq-nsure-sidebar .list-group-item {
  cursor: pointer;
  border-radius: 0;
  color: black;
}

.faq-nsure-sidebar .list-group-item.active {
  background-color: #040667;
  color: white;
  border-color: #040667;
}

.faq-nsure-item {
  cursor: pointer;
}

.faq-nsure-question:hover {
  background-color: #71b7978a;
}

.faq-nsure-answer {
  font-size: 14px;
  color: #333;
  background-color: #52c41a0d;
  border: 1px solid var(--secondary-part);
  padding: 15px 20px;
  font-weight: 500;
  border-radius: 10px;
}

.faq-nsure-collapse {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-nsure-collapse.open {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-nsure-search {
    width: 100%;
  }

  .faq-nsure-title {
    font-size: 20px;
  }

  .faq-nsure-sidebar {
    text-align: center;
  }
}
.faq-nsure-question {
  background-color: #fff;
  border: 1px solid var(--secondary-part);
  padding: 15px 20px;
  border-radius: 10px;
}
.bg-contact-back-nsure {
  background-image: url(../img-nsure/contact-bg.jpg);
  background-size: cover;
  background-position: right;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.bookmarkBtn {
  width: 100px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.349);
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}
.bookmarkBtn2 {
  width: 100px;
  height: 40px;
  border-radius: 40px;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.IconContainer {
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom, var(--secondary-part), #127e4c);
  border-radius: 50px;
  display: flex;
  color: #fff;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
}

.icon {
  border-radius: 1px;
}

/* .text-nsure-dash {
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  margin: 0em 0;
  font-weight: 500;
  justify-content: center;
  color: white;
  z-index: 1;
  transition-duration: 0.3s;
  font-size: 1.04em;
} */
.text-nsure-dash {
  height: 100%;
  width: 100%;
  max-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0em 0;
  font-weight: 500;
  text-align: center;
  word-break: break-word;
  white-space: normal;
  font-size: 14px;
}

.bookmarkBtn:hover .IconContainer {
  width: 90px;
  transition-duration: 0.3s;
}

.bookmarkBtn:hover .text-nsure-dash {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
}

.bookmarkBtn:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}
.footer-nsure {
  background-color: #040667;
  color: white;
  padding: 5px 20px;
}

.footer-nsure h5 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  font-weight: 500;
}

.footer-nsure a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}
.footer-nsure a i {
  margin-top: -0.1em;
}
.footer-nsure a:hover {
  text-decoration: underline;
  color: var(--secondary-part) !important;
}

.footer-logo {
  width: 70px;
  height: auto;
}

.footer-bottom {
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  border-top: 1px solid var(--secondary-part);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 14px;
}
.footer-space {
  margin-top: 0.7em !important;
}
@media (max-width: 767.98px) {
  .footer-bottom {
    padding-top: 10px;
    margin-top: 0px !important;
    font-size: 11px;
  }
  .footer-nsure h5 {
    font-size: 12px !important;
    text-align: justify;
    margin-bottom: 6px !important;
  }
  .footer-logo {
    width: 40px !important;
  }
  .footer-nsure a {
    font-size: 11px !important;
    text-align: justify;
    margin-bottom: 3px !important;
  }
  .footer-nsure {
    text-align: center;
    padding: 0px !important;
  }

  .footer-nsure .col-md-3 {
    margin-bottom: 0px !important;
  }
  .footer-space {
    margin-top: 0 !important;
  }
}

/* .goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
body {
  top: 0px !important;
}

#google_translate_element {
  display: inline-block;
}

.goog-te-combo {
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid #3fbe00;
  border-radius: 6px;
  background-color: #040667;
  color: #ffffff;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.goog-te-combo:hover,
.goog-te-combo:focus {
  border-color: #ffffff;
  background-color: #3fbe00;
  color: #040667;
}

.goog-te-gadget-icon {
  display: none !important;
}
.skiptranslate iframe,
.goog-te-gadget-icon {
  display: none !important;
}

@media (max-width: 500px) {
  .google-translate-wrapper {
    display: none;
  }
} */
/* Wrapper */
#translate-wrapper {
  width: 200px;
  position: relative;
  top: 0.5em;
  z-index: 1000;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
  display: none !important;
}
.VIpgJd-ZVi9od-ORHb {
  display: none !important;
}
iframe.goog-te-banner-frame {
  display: none !important;
}

.goog-tooltip,
.goog-tooltip:hover,
.VIpgJd-ZVi9od-ORHb {
  display: none !important;
  pointer-events: none !important;
}
.goog-te-gadget img {
  display: none !important;
}
.goog-te-gadget {
  color: transparent !important;
}
.goog-te-combo {
  background: var(--primary);
  padding: 10px 20px;
  color: #fff;
  border-radius: 10px;
}

.goog-te-gadget span {
  display: none !important;
}

/* BOAT DETAILS TABLE START */

.custom-table thead tr th {
  background-color: #040667 !important;
  color: white;
  padding: 10px;
  font-weight: 600;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-Ud7fr {
  display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od {
  display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-UTujCb {
  display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-eO9mKe {
  display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-xgov5,
.VIpgJd-yAWNEb-hvhgNd-bgm6sf,
.goog-gt-thumbUpIcon,
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-Ud7fr,
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-k77Iif,
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-axAV1,
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid,
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od,
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-xgov5,
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-THI6Vb,
.VIpgJd-yAWNEb-L7lbkb span,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO-ti6hGc,
.VIpgJd-ZVi9od-aZ2wEe,
.VIpgJd-ZVi9od-aZ2wEe-Jt5cK,
.VIpgJd-yAWNEb-L7lbkb iframe {
  display: none !important;
}
.goog-gt-thumbUpButton {
  display: none !important;
}
.VIpgJd-yAWNEb-L7lbkb,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-LgbsSe button,
.VIpgJd-ZVi9od-ORHb-bN97Pc,
.VIpgJd-ZVi9od-ORHb img,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
}
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
  background-color: transparent !important;
  box-shadow: none !important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-xl07Ob-OEVmcd {
  display: none !important;
}
.custom-table tbody tr td {
  background-color: #e6f9e6;
  color: #333366;
  font-weight: 500;
}

.custom-table th,
.custom-table td {
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
.login-signin-logo {
  height: 90px;
}
/* BOAT DETAILS TABLE END */
