/* =========================================================
   UTILITY CLASSES
   BusOva Platform - Reusable helper classes
========================================================= */

/* -------------------------------------------------
   SITE BRANDING
------------------------------------------------- */
.site-tagline {
    font-size: 1.0rem;
    letter-spacing: 0.3px;
    color: #ffffff;
}

/* -------------------------------------------------
   BACKGROUND COLOURS
------------------------------------------------- */
.bg-purple {
    background: #6f42c1 !important;
}

.bg-orange {
    background: #fd7e14 !important;
    color: #fff !important;
}

/* -------------------------------------------------
   STAT ICONS
------------------------------------------------- */
.stat-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.1rem;
}

/* =========================================================
   BREADCRUMBS - CLEAN & MODERN
========================================================= */

.breadcrumb {
    --bs-breadcrumb-divider: '';
    margin-bottom: 1rem;
    background: transparent;
}

.breadcrumb .fa-house {
    font-size: 0.85rem;
}

.breadcrumb-item {
    font-size: 0.85rem;
}

/* Linked breadcrumb */
.breadcrumb-item a {
    color: var(--link-color);
    font-weight: 500;
}

/* Hover breadcrumb */
.breadcrumb-item a:hover {
    color: var(--link-hover);
}

/* Active breadcrumb (current page) */
.breadcrumb-item.active {
    color: var(--text-muted);
    font-weight: 600;
}

/* Separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: '\203A';  /* Right-pointing single angle quotation mark */
    color: var(--text-muted);
    padding: 0 0.5rem;
}

/* =========================================================
   AVATARS - STANDARDISED & SAFE
========================================================= */

.avatar {
    display: inline-block;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Size variants */
.avatar-xs {
    width: 32px;
    height: 32px;
}

.avatar-sm {
    width: 48px;
    height: 48px;
}

.avatar-md {
    width: 96px;
    height: 96px;
}

.avatar-lg {
    width: 128px;
    height: 128px;
}

/* =========================================================
   TEXT UTILITIES
========================================================= */

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   VISIBILITY UTILITIES
========================================================= */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
