/* Custom Styles - KoopG Service */

/* Auth pages */
.page-center {
    min-height: 100vh;
}

/* Sidebar active state */
.navbar-vertical .nav-link.active,
.navbar-vertical .nav-item.active > .nav-link {
    font-weight: 600;
}

/* Avatar initials */
.avatar {
    font-weight: 600;
}

/* Flash messages animation */
.alert-dismissible {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Table actions */
.btn-list .btn {
    padding: 0.25rem 0.5rem;
}

/* QR Code container */
#qrcode {
    display: inline-block;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 4px;
}

/* 2FA code input */
input[inputmode="numeric"] {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
}
