/* ============================================
   Life Guardian - Common Styles
   ============================================ */

/* Brand Bar Navigation */
.brand-bar {
    background: linear-gradient(135deg, #0f766e, #0891b2);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.brand-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.brand-link:hover {
    opacity: 0.85;
    color: white;
}

.brand-separator {
    color: rgba(255, 255, 255, 0.5);
}

.brand-current {
    color: rgba(255, 255, 255, 0.9);
}

@media print {
    .brand-bar {
        display: none !important;
    }
}
