/**
 * ============================================================
 * BLAZERSPRESS
 * PROFESSIONAL MAIN STYLESHEET
 * File: assets/css/style.css
 * PHP 7.3 / 7.4 Compatible
 * Bootstrap 5 Compatible
 * ============================================================
 */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
    --bp-primary: #2563eb;
    --bp-primary-dark: #1d4ed8;
    --bp-primary-light: #eff6ff;

    --bp-secondary: #475569;

    --bp-text: #0f172a;
    --bp-text-soft: #334155;
    --bp-muted: #64748b;

    --bp-white: #ffffff;
    --bp-background: #f8fafc;
    --bp-surface: #ffffff;

    --bp-border: #e2e8f0;
    --bp-border-dark: #cbd5e1;

    --bp-success: #16a34a;
    --bp-success-light: #f0fdf4;

    --bp-warning: #d97706;
    --bp-warning-light: #fffbeb;

    --bp-danger: #dc2626;
    --bp-danger-light: #fef2f2;

    --bp-info: #0284c7;
    --bp-info-light: #f0f9ff;

    --bp-dark: #0f172a;

    --bp-radius-sm: 0.375rem;
    --bp-radius: 0.625rem;
    --bp-radius-lg: 0.875rem;
    --bp-radius-xl: 1.125rem;

    --bp-shadow-sm:
        0 1px 2px rgba(15, 23, 42, 0.05);

    --bp-shadow:
        0 4px 12px rgba(15, 23, 42, 0.07);

    --bp-shadow-lg:
        0 10px 30px rgba(15, 23, 42, 0.10);

    --bp-transition:
        all 0.2s ease;

    --bp-navbar-height: 68px;
}


/* ============================================================
   2. GLOBAL RESET
   ============================================================ */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bp-white);
    color: var(--bp-text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 1rem;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: var(--bp-primary);
    text-decoration: none;
    transition: var(--bp-transition);
}

a:hover {
    color: var(--bp-primary-dark);
}

::selection {
    background: var(--bp-primary);
    color: var(--bp-white);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bp-text);
    font-weight: 700;
    line-height: 1.25;
}

h1,
h2,
h3 {
    letter-spacing: -0.025em;
}

p {
    margin-top: 0;
}

.text-muted {
    color: var(--bp-muted) !important;
}

.text-bp-primary {
    color: var(--bp-primary) !important;
}

.bg-bp-primary {
    background-color: var(--bp-primary) !important;
}

.bg-bp-primary-light {
    background-color: var(--bp-primary-light) !important;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
    border-radius: var(--bp-radius);
    font-weight: 600;
    transition: var(--bp-transition);
}

.btn:focus {
    box-shadow:
        0 0 0 0.2rem rgba(37, 99, 235, 0.18);
}

.btn-bp-primary {
    background: var(--bp-primary);
    border-color: var(--bp-primary);
    color: var(--bp-white);
}

.btn-bp-primary:hover,
.btn-bp-primary:focus,
.btn-bp-primary:active {
    background: var(--bp-primary-dark) !important;
    border-color: var(--bp-primary-dark) !important;
    color: var(--bp-white) !important;
    transform: translateY(-1px);
}

.btn-outline-bp-primary {
    background: transparent;
    border-color: var(--bp-primary);
    color: var(--bp-primary);
}

.btn-outline-bp-primary:hover,
.btn-outline-bp-primary:focus,
.btn-outline-bp-primary:active {
    background: var(--bp-primary);
    border-color: var(--bp-primary);
    color: var(--bp-white);
}


/* ============================================================
   5. NAVBAR
   ============================================================ */

.navbar {
    min-height: var(--bp-navbar-height);
    background: var(--bp-white);
    border-bottom: 1px solid var(--bp-border);
}

.navbar-brand {
    color: var(--bp-primary) !important;

    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.navbar .nav-link {
    position: relative;

    padding-left: 0.8rem;
    padding-right: 0.8rem;

    color: var(--bp-text-soft);
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--bp-primary);
}

.navbar .nav-link.active::after {
    position: absolute;
    right: 0.8rem;
    bottom: 0;
    left: 0.8rem;

    height: 2px;

    background: var(--bp-primary);

    content: "";
}

.navbar .dropdown-menu {
    min-width: 210px;

    margin-top: 0.5rem;

    padding: 0.45rem;

    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);

    box-shadow: var(--bp-shadow-lg);
}

.navbar .dropdown-item {
    padding: 0.65rem 0.8rem;
    border-radius: var(--bp-radius-sm);

    color: var(--bp-text-soft);
    font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--bp-primary-light);
    color: var(--bp-primary);
}

.navbar .dropdown-divider {
    border-color: var(--bp-border);
}

.navbar .form-control {
    min-width: 190px;
}

.navbar .form-control:focus {
    border-color: var(--bp-primary);

    box-shadow:
        0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}


/* ============================================================
   6. MAIN CONTENT
   ============================================================ */

main {
    min-height: calc(100vh - var(--bp-navbar-height));
}

.page-header {
    margin-bottom: 2rem;
}

.page-title {
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.section-title {
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    max-width: 700px;
    color: var(--bp-muted);
}


/* ============================================================
   7. CARDS
   ============================================================ */

.card {
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-lg);
}

.card-header {
    background: var(--bp-white);
    border-bottom-color: var(--bp-border);
}

.card-footer {
    background: var(--bp-white);
    border-top-color: var(--bp-border);
}

.dashboard-card {
    border: 1px solid var(--bp-border);
    transition: var(--bp-transition);
}

.dashboard-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--bp-shadow-lg) !important;
    transform: translateY(-2px);
}


/* ============================================================
   8. ADMIN LAYOUT
   ============================================================ */

.admin-sidebar {
    min-height: calc(100vh - var(--bp-navbar-height));

    background: var(--bp-white);

    border-right: 1px solid var(--bp-border);
}

.admin-sidebar-inner {
    position: sticky;
    top: var(--bp-navbar-height);

    padding: 1.25rem 0.75rem;
}

.sidebar-heading {
    margin: 0.75rem 0 0.45rem;

    padding: 0.45rem 0.75rem;

    color: var(--bp-muted);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.admin-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    margin-bottom: 0.2rem;
    padding: 0.7rem 0.8rem;

    border-radius: var(--bp-radius);

    color: var(--bp-text-soft);

    font-size: 0.94rem;
    font-weight: 500;

    text-decoration: none;
}

.admin-sidebar .nav-link i {
    width: 1.3rem;
    flex-shrink: 0;

    color: inherit;

    font-size: 1.05rem;
    text-align: center;
}

.admin-sidebar .nav-link:hover {
    background: var(--bp-primary-light);
    color: var(--bp-primary);
}

.admin-sidebar .nav-link.active {
    background: var(--bp-primary);
    color: var(--bp-white);
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.18);
}

.admin-sidebar .nav-link.text-danger:hover {
    background: var(--bp-danger-light);
    color: var(--bp-danger) !important;
}

.admin-content {
    min-height: calc(100vh - var(--bp-navbar-height));
    background: var(--bp-background);
}

.admin-content > .container-fluid {
    width: 100%;
    max-width: 1600px;
}


/* ============================================================
   9. DASHBOARD STATISTICS
   ============================================================ */

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    font-size: 1.2rem;
}


/* ============================================================
   10. TABLES
   ============================================================ */

.table {
    color: var(--bp-text);
}

.table th {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;

    white-space: nowrap;

    color: var(--bp-text-soft);

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.table td {
    vertical-align: middle;
}

.table > :not(caption) > * > * {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;

    border-bottom-color: var(--bp-border);
}

.table-hover > tbody > tr:hover > * {
    background: var(--bp-primary-light);
}

.post-title {
    max-width: 280px;
}


/* ============================================================
   11. BADGES
   ============================================================ */

.badge {
    padding: 0.4em 0.7em;

    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 600;
}


/* ============================================================
   12. FORMS
   ============================================================ */

.form-label {
    margin-bottom: 0.45rem;

    color: var(--bp-text-soft);
    font-weight: 600;
}

.form-control,
.form-select {
    min-height: 44px;

    border: 1px solid var(--bp-border-dark);
    border-radius: var(--bp-radius);

    color: var(--bp-text);

    background-color: var(--bp-white);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:hover,
.form-select:hover {
    border-color: #94a3b8;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bp-primary);

    box-shadow:
        0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-check-input {
    border-color: var(--bp-border-dark);
}

.form-check-input:checked {
    background-color: var(--bp-primary);
    border-color: var(--bp-primary);
}

.form-check-input:focus {
    border-color: var(--bp-primary);

    box-shadow:
        0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}

.input-group-text {
    background: var(--bp-background);
    border-color: var(--bp-border-dark);
    color: var(--bp-muted);
}

.input-group .form-control:focus {
    position: relative;
    z-index: 3;
}


/* ============================================================
   13. ALERTS / FLASH MESSAGES
   ============================================================ */

.alert {
    border-radius: var(--bp-radius);
    border-width: 1px;
}

.alert-success {
    color: #166534;
    background: var(--bp-success-light);
    border-color: #bbf7d0;
}

.alert-warning {
    color: #92400e;
    background: var(--bp-warning-light);
    border-color: #fde68a;
}

.alert-danger {
    color: #991b1b;
    background: var(--bp-danger-light);
    border-color: #fecaca;
}

.alert-info {
    color: #075985;
    background: var(--bp-info-light);
    border-color: #bae6fd;
}


/* ============================================================
   14. BLOG CARDS
   ============================================================ */

.blog-card {
    height: 100%;
    overflow: hidden;

    border: 1px solid var(--bp-border);

    box-shadow: var(--bp-shadow);

    transition: var(--bp-transition);
}

.blog-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--bp-shadow-lg);
    transform: translateY(-4px);
}

.blog-card img {
    display: block;

    width: 100%;
    height: 220px;

    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.25rem;
}

.blog-card-title {
    margin-bottom: 0.6rem;

    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--bp-text);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--bp-primary);
}

.blog-card .card-text {
    color: var(--bp-muted);
}


/* ============================================================
   15. POST / ARTICLE
   ============================================================ */

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

    color: var(--bp-muted);

    font-size: 0.875rem;
}

.post-content {
    color: var(--bp-text-soft);

    font-size: 1.05rem;
    line-height: 1.9;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 1.5rem auto;

    border-radius: var(--bp-radius);
}

.post-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;

    border-left: 4px solid var(--bp-primary);

    background: var(--bp-primary-light);

    color: var(--bp-text-soft);
}

.post-content pre {
    overflow-x: auto;

    padding: 1rem;

    border-radius: var(--bp-radius);

    background: var(--bp-dark);
    color: #e2e8f0;
}

.post-featured-image {
    display: block;

    width: 100%;
    max-height: 560px;

    object-fit: cover;

    border-radius: var(--bp-radius-lg);
}


/* ============================================================
   16. COMMENTS
   ============================================================ */

.comment-item {
    padding: 1.25rem 0;

    border-bottom: 1px solid var(--bp-border);
}

.comment-item:last-child {
    border-bottom: 0;
}

.comment-author {
    color: var(--bp-text);
    font-weight: 700;
}

.comment-date {
    color: var(--bp-muted);
    font-size: 0.8rem;
}

.comment-body {
    margin-top: 0.5rem;
    color: var(--bp-text-soft);
}


/* ============================================================
   17. LOGIN / AUTHENTICATION
   ============================================================ */

.login-page {
    min-height: calc(100vh - var(--bp-navbar-height));

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 3rem 1rem;

    background:
        linear-gradient(
            180deg,
            var(--bp-background) 0%,
            var(--bp-white) 100%
        );
}

.login-wrapper {
    width: 100%;
    max-width: 460px;
}

.login-logo {
    color: var(--bp-primary);

    font-size: 42px;
    font-weight: 800;

    line-height: 1;
}

.login-card {
    width: 100%;

    overflow: hidden;

    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-xl);

    box-shadow: var(--bp-shadow-lg);
}

.login-card .card-header {
    padding: 2rem;

    text-align: center;

    background: var(--bp-white);
}

.login-card .card-body {
    padding: 2rem;
}

.login-page .form-control {
    min-height: 48px;
}

.login-page .input-group-text {
    min-width: 46px;
    justify-content: center;

    background: var(--bp-white);
}

.login-page .form-control:focus {
    border-color: var(--bp-primary);

    box-shadow:
        0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}


/* ============================================================
   18. REGISTRATION
   ============================================================ */

.register-page {
    min-height: calc(100vh - var(--bp-navbar-height));

    padding: 3rem 1rem 4rem;

    background:
        linear-gradient(
            180deg,
            var(--bp-background) 0%,
            var(--bp-white) 100%
        );
}

.register-wrapper {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.register-card {
    overflow: hidden;

    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-xl);

    box-shadow: var(--bp-shadow-lg);
}


/* ============================================================
   19. PROFILE
   ============================================================ */

.profile-page {
    padding: 2.5rem 0 4rem;
}

.profile-card {
    overflow: hidden;

    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-xl);

    box-shadow: var(--bp-shadow);
}

.profile-cover {
    height: 150px;

    background:
        linear-gradient(
            135deg,
            var(--bp-primary),
            var(--bp-primary-dark)
        );
}

.profile-avatar,
.profile-avatar-placeholder {
    width: 140px;
    height: 140px;

    border: 6px solid var(--bp-white);
    border-radius: 50%;

    box-shadow: var(--bp-shadow-lg);
}

.profile-avatar {
    object-fit: cover;
    background: var(--bp-white);
}

.profile-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--bp-primary-light);
    color: var(--bp-primary);

    font-size: 2.5rem;
    font-weight: 800;
}

.profile-image {
    width: 120px;
    height: 120px;

    object-fit: cover;

    border-radius: 50%;
}

.profile-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: var(--bp-primary-light);
    color: var(--bp-primary);

    font-size: 3rem;
}


/* ============================================================
   20. SEARCH
   ============================================================ */

.search-result {
    padding: 1.5rem 0;

    border-bottom: 1px solid var(--bp-border);
}

.search-result:first-child {
    padding-top: 0;
}

.search-result:last-child {
    border-bottom: 0;
}

.search-result-title {
    margin-bottom: 0.5rem;

    font-size: 1.2rem;
    font-weight: 700;
}

.search-result-title a {
    color: var(--bp-text);
    text-decoration: none;
}

.search-result-title a:hover {
    color: var(--bp-primary);
}


/* ============================================================
   21. CATEGORY / SIDEBAR
   ============================================================ */

.category-list .list-group-item {
    border-color: var(--bp-border);
}

.category-list .list-group-item a {
    color: var(--bp-text-soft);
    font-weight: 500;
}

.category-list .list-group-item a:hover {
    color: var(--bp-primary);
}

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 26px;
    height: 26px;

    padding: 0 0.45rem;

    border-radius: 999px;

    background: var(--bp-primary-light);
    color: var(--bp-primary);

    font-size: 0.75rem;
    font-weight: 700;
}


/* ============================================================
   22. PAGINATION
   ============================================================ */

.pagination {
    gap: 0.25rem;
}

.pagination .page-link {
    border-color: var(--bp-border);

    border-radius: var(--bp-radius) !important;

    color: var(--bp-text-soft);
}

.pagination .page-link:hover {
    background: var(--bp-primary-light);
    border-color: #bfdbfe;
    color: var(--bp-primary);
}

.pagination .page-item.active .page-link {
    background: var(--bp-primary);
    border-color: var(--bp-primary);
    color: var(--bp-white);
}

.pagination .page-item.disabled .page-link {
    color: #94a3b8;
}


/* ============================================================
   23. FOOTER
   ============================================================ */

.site-footer {
    margin-top: 4rem;

    background: var(--bp-dark);
    color: #cbd5e1;
}

.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--bp-primary);
}

.site-footer .footer-heading {
    margin-bottom: 1rem;

    color: var(--bp-white);

    font-weight: 700;
}

.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}


/* ============================================================
   24. EMPTY STATES
   ============================================================ */

.empty-state {
    padding: 3rem 1.5rem;

    text-align: center;

    border: 1px dashed var(--bp-border-dark);
    border-radius: var(--bp-radius-lg);

    background: var(--bp-background);
}

.empty-state-icon {
    margin-bottom: 1rem;

    color: #94a3b8;

    font-size: 2.5rem;
}

.empty-state-title {
    margin-bottom: 0.5rem;

    font-weight: 700;
}


/* ============================================================
   25. AVATARS
   ============================================================ */

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--bp-primary-light);
    color: var(--bp-primary);

    font-weight: 700;
}

.avatar-sm {
    width: 36px;
    height: 36px;

    font-size: 0.8rem;
}

.avatar-md {
    width: 48px;
    height: 48px;

    font-size: 1rem;
}

.avatar-lg {
    width: 72px;
    height: 72px;

    font-size: 1.4rem;
}

.avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ============================================================
   26. UTILITY CLASSES
   ============================================================ */

.min-width-0 {
    min-width: 0;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.cursor-pointer {
    cursor: pointer;
}

.transition {
    transition: var(--bp-transition);
}

.shadow-bp {
    box-shadow: var(--bp-shadow) !important;
}

.shadow-bp-lg {
    box-shadow: var(--bp-shadow-lg) !important;
}

.border-bp {
    border-color: var(--bp-border) !important;
}

.rounded-bp {
    border-radius: var(--bp-radius) !important;
}

.rounded-bp-lg {
    border-radius: var(--bp-radius-lg) !important;
}

.text-truncate-2 {
    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.text-truncate-3 {
    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/* ============================================================
   27. ADMIN ACTIONS
   ============================================================ */

.action-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.action-buttons .btn {
    white-space: nowrap;
}


/* ============================================================
   28. LOADING STATE
   ============================================================ */

.loading {
    pointer-events: none;
    opacity: 0.65;
}

.spinner-border-sm {
    width: 0.9rem;
    height: 0.9rem;
}


/* ============================================================
   29. RESPONSIVE
   ============================================================ */

@media (max-width: 1199.98px) {

    .post-title {
        max-width: 230px;
    }

    .navbar .form-control {
        min-width: 160px;
    }
}


@media (max-width: 991.98px) {

    .admin-sidebar {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid var(--bp-border);
    }

    .admin-sidebar-inner {
        position: static;
        padding: 1rem 0.75rem;
    }

    .admin-sidebar .nav {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0.35rem;
    }

    .admin-sidebar .nav-link {
        margin-bottom: 0;
    }

    .admin-content {
        min-height: auto;
    }

    .post-title {
        max-width: 200px;
    }

    .navbar .nav-link.active::after {
        display: none;
    }
}


@media (max-width: 767.98px) {

    .navbar {
        min-height: 60px;
    }

    .navbar .form-control {
        min-width: 0;
    }

    .page-header {
        margin-bottom: 1.5rem;
    }

    .table {
        font-size: 0.9rem;
    }

    .post-title {
        max-width: 180px;
    }

    .blog-card img {
        height: 200px;
    }

    .post-content {
        font-size: 1rem;
    }

    .profile-cover {
        height: 120px;
    }
}


@media (max-width: 575.98px) {

    .admin-sidebar .nav {
        grid-template-columns: 1fr;
    }

    .login-page,
    .register-page {
        padding: 2rem 0.75rem 3rem;
    }

    .login-card .card-header,
    .login-card .card-body {
        padding: 1.5rem;
    }

    .register-card {
        border-radius: var(--bp-radius-lg);
    }

    .blog-card img {
        height: 190px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;

        font-size: 1rem;
    }

    .post-title {
        max-width: 150px;
    }

    .profile-page {
        padding-top: 1.5rem;
    }

    .profile-avatar,
    .profile-avatar-placeholder {
        width: 110px;
        height: 110px;
    }
}


/* ============================================================
   30. ACCESSIBILITY
   ============================================================ */

:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ============================================================
   31. PRINT
   ============================================================ */

@media print {

    .navbar,
    .admin-sidebar,
    .site-footer,
    .btn,
    .action-buttons,
    .no-print {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    main,
    .admin-content {
        min-height: auto;
        background: #ffffff !important;
    }

    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }

    a {
        color: #000000 !important;
        text-decoration: none !important;
    }
}
