.card .img-circle{
    border-radius: 0;
}

.app-launch-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(8, 145, 178, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.16), transparent 30%),
        linear-gradient(135deg, #edf6f7 0%, #f7fafc 46%, #eef4ff 100%);
    opacity: 1;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.app-standalone-launch .app-launch-splash {
    display: flex;
}

.app-standalone-launch.app-launch-ready .app-launch-splash {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.app-launch-splash__inner {
    text-align: center;
    color: #1f2937;
}

.app-launch-splash__logo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.app-launch-splash__title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.app-launch-splash__tagline {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
}

.app-flash-stack .alert {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: opacity 0.32s ease, transform 0.32s ease, max-height 0.32s ease, margin 0.32s ease, padding 0.32s ease;
    opacity: 1;
    transform: translateY(0);
    max-height: 240px;
}

.alert.is-hiding {
    opacity: 0;
    transform: translateY(-6px);
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

@media (max-width: 576px) {
    .content-header .container-fluid > .row.mb-2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .content-header .container-fluid > .row.mb-2 > [class*="col-"] {
        width: auto;
        max-width: none;
        flex: 0 1 auto;
        margin-bottom: 0;
    }

    .content-header h1 {
        margin-bottom: 0;
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .content-header .breadcrumb {
        float: none !important;
        margin: 0;
        justify-content: flex-end;
        white-space: nowrap;
        font-size: 0.85rem;
    }

    .content-header .breadcrumb-item + .breadcrumb-item::before {
        padding-right: 0.35rem;
        padding-left: 0.35rem;
    }
}
