/* TRANSFORM-IN Custom Styles */

.brand-text {
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.profile-username {
    font-size: 1.25rem;
    font-weight: 600;
}

.list-group-unbordered .list-group-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.login-box-msg {
    font-size: 0.9rem;
    color: #6c757d;
}

.table td .btn-group {
    white-space: nowrap;
}

.card-footer {
    background-color: rgba(0,0,0,0.01);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.content-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.progress-bar {
    transition: width 0.6s ease;
}

/* Pulse survey response styling */
.form-check-inline {
    margin-right: 0.5rem;
}

/* Health score colors */
.score-excellent { color: var(--success); }
.score-warning { color: var(--warning); }
.score-danger { color: var(--danger); }

/* Notification badge pulse */
@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.badge-warning.navbar-badge {
    animation: pulse-badge 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }
