/*-----------------------------------------------
|   Phoenix buttons
-----------------------------------------------*/
/* -------------------------------------------------------------------------- */
/*                                Phoenix button                              */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/* ----------------------------- Phoenix-buttons ---------------------------- */
/*# sourceMappingURL=user.css.map */


/* Styling for the typing animation */
.typing-animation {
    animation: typing 3s steps(7), blink 0.5s step-end infinite alternate;
}

/* Keyframes for typing animation */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 7ch; /* 7 characters for "ChatGPT" */
    }
}

/* Keyframes for blinking cursor */
@keyframes blink {
    from {
        border-color: transparent;
    }
    to {
        border-color: black;
    }
}

/* July 2, 2025 Philip – font size update */
.form-label,
.form-check-label,
.navbar-top,
.nav-link {
    font-size: 0.875rem !important;
}

.navbar-vertical .navbar-vertical-content .navbar-nav {
    font-size: 0.875rem !important;
}