
  /* Logo Size */
  .navbar-brand img {
    height: 40px;   /* 👈 change this value */
    width: auto;
    max-height: none;
  }

  /* Ensure navbar can grow to fit the logo */
  .navbar {
    min-height: 90px;
  }

  /* Vertical centering */
  .navbar-brand {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }



.crmEntityFormView {
  background-color: var(--portalThemeColor3) !important;
  border-radius:0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2); /* horizontal, vertical, blur, color */
  padding: 16px;
  color:var(--portalThemeOnColor3);
}

label {
  background-color: var(--portalThemeColor3) !important;/* Light gray background */
  border-radius: 20%;
}

.footer {
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
}



.table-info .field-label {
    background-color: var(--portalThemeColor3) !important; 
    color: var(--portalThemeOnColor3) !important;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

/* Form Styling */

.progress-numeric.top {
    background-color: #4A5568 !important; 
    font-size: 1.2rem;
    color: #FFF8F2;
    font-weight: bold;
}


.form-control.readonly {
    background-color: #D1D5DB  !important;  /* Light gray background */
    color: #4A5568 !important;               /* Dimmed text color */
    border: 1px solid #ccc !important;    /* Subtle border */
    cursor: not-allowed !important;       /* Indicate it's not editable */
}

.text-primary {
  /*color: #E5E7EB !important; */
}


.number {
color: #000000;
background-color: #FF7A22 !important; 
}

legend.section-title h3 {
      /*color: var(--portalThemeOnColor3) !important; */          /* Set text color */
      font-size: 20px !important;        /* Smaller like paragraph */
      font-style: italic !important;     /* Italic text */
      font-weight: normal !important; 
}

.description {
      color: var(--portalThemeOnColor3) !important;            /* Set text color */
      font-style: italic;
      font-size: 75%;
}

.list-group-item.active {
    z-index: 2;
    color: #FF7A22 !important;
    background-color: var(--bs-list-group-active-bg);
    border-color: var(--bs-list-group-active-border-color);
}


/* **********   PAGE LOADING SPINNER ******************
/* Full screen overlay */

#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* Active state */
#global-loader.active {
  visibility: visible;
  opacity: 1;
}

/* Hourglass spinner */
.loader-hourglass {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ff6a00; /* your orange */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* **********   PAGE LOADING SPINNER  --  END ******************