.logo_primary {
    color: #1695d2;

}

.logo_secondery {
    color: #0b9147;
}


.primary_background {
    background-color: #1695d2;
}

.primary_background:hover {
    background-color: #0c75a6;
}

.secondary_background {
    background-color: #0b9147;
}

.secondary_background:hover {
    background-color: #0a7b3e;

}

.nav-link.active {
    font-weight: bold;
    color: #0a7b3e !important;
    /* Bootstrap's danger color */
    border-bottom: 2px solid #0a7b3e;
}

.active_navbar_pages {
    background-color: #198754;
    /* Bootstrap success green */
    color: white;
    border-color: #198754;
    padding: 5px;
    border-radius: 5px;
}

.active-tab {
    background-color: #198754 !important;
    color: white !important;
    font-weight: bold;
    border-radius: 5px;
}

.short_line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
display: none;
}

/* Spinner Animation */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #007BFF; /* Bootstrap blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}