label.required::after {
    content: " *";
    color: #c10007;
}

:root {
    --bs-body-bg-rgb: 248, 248, 248; // same as #f8f8f8
}

/* Structural App Layout Tweaks */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: rgb(var(--bs-body-bg-rgb));
}

main {
    flex: 1 0 auto;
}

.logo-icon {
    height: 75px;
    width: auto;
}

.navbar {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    background-color: rgba(var(--bs-body-bg-rgb), 0.85) !important;
    border-bottom: 1px solid var(--bs-border-color-translucent);
}

.navbar-status {
    z-index: 1;
    font-size: 0.9rem;
    border-bottom: none;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navlink.active {
    font-size: 1.2rem;
}

/* Fluid transitions for custom dashboard interaction components */
.transition-all {
    transition: all 0.2s ease-in-out;
}

/* Small visual polish additions to augment standard Bootstrap */
.premium-card-border {
    border: 2px solid var(--bs-primary) !important;
}
.pricing-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--bs-box-shadow) !important;
}
