@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');

:root {
    --theme-bg: #ffffff;
    --theme-bg-accent: #ffffff;
    --theme-surface: #ffffff;
    --theme-surface-soft: #f9f9f9;
    --theme-text: #1a1a1a;
    --theme-muted: #666666;
    --theme-border: #e0e0e0;
    --theme-primary: #5060b0;
    --theme-primary-dark: #303050;
    --theme-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--theme-text);
    margin: 0;
    background: #ffffff;
}

body.has-app-sidebar {
    padding-left: 252px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.sub-title {
    font-family: 'Sora', sans-serif;
    color: #0a0a0a;
}

.navbar,
.card,
.quote-dis,
.email-content.tbl > table,
.table,
form {
    background: var(--theme-surface);
    border: 1px solid var(--theme-border);
    box-shadow: var(--theme-shadow);
    border-radius: 12px;
}

.navbar {
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(15, 35, 64, 0.07);
}

.app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 252px;
    z-index: 1040;
    border-right: 1px solid rgba(10, 31, 68, 0.12);
    background: transparent;
    box-shadow: none;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-sidebar-brand-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0a1f44;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.app-sidebar-brand .logo {
    height: 38px;
    width: auto;
}

.app-sidebar-brand-text {
    font-size: 16px;
    letter-spacing: 0.2px;
}

.app-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.app-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0a1f44;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.app-sidebar-link:hover {
    color: #081735;
    border-left-color: rgba(10, 31, 68, 0.35);
    text-decoration: underline;
}

.app-sidebar-link.active {
    color: #0a1f44;
    border-left-color: #2f6ff1;
    font-weight: 700;
}

.app-sidebar-link i {
    width: 18px;
    text-align: center;
}

.app-sidebar-footer {
    margin-top: auto;
    padding-top: 10px;
}

.app-sidebar-trigger,
.app-sidebar-close {
    border: 1px solid var(--theme-border);
    background: #ffffff;
    color: #303050;
    border-radius: 10px;
}

.app-sidebar-trigger {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1060;
}

.app-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 17, 34, 0.35);
    z-index: 1035;
}

form {
    padding: 18px;
}

.label,
.l-label,
label {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-text);
}

.form-control,
.form-select,
textarea,
input,
select {
    border-radius: 10px;
    border: 1px solid var(--theme-border);
    min-height: 38px;
    background: var(--theme-surface-soft);
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus,
select:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(80, 96, 176, 0.2);
    background: #fff;
}

textarea.form-control,
textarea {
    min-height: 110px;
}

.btn {
    border-radius: 10px;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-dark));
    border: none;
    box-shadow: 0 8px 18px rgba(48, 48, 80, 0.26);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #4657a8, #27274a);
}

.btn-secondary {
    border: 1px solid var(--theme-border);
    background: #f5f5f5;
    color: var(--theme-text);
}

.table th,
th {
    background: linear-gradient(135deg, #5b6bc0, #3f4f96) !important;
    color: #fff !important;
}

.table td,
td,
th {
    border-color: #dce5f2 !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.pagination .page-link {
    color: #303050;
}

.login-bg {
    background:
        linear-gradient(145deg, rgba(8, 33, 72, 0.55), rgba(20, 107, 216, 0.25)),
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.2), transparent 35%),
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(130deg, rgba(16, 47, 95, 0.65), rgba(31, 92, 165, 0.5)),
    url('img/login-webinar-realistic.jpg') right center / cover no-repeat;
}

.login-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.auth-link {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

.form-error {
    color: #c92a42;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 768px) {
    form {
        padding: 14px;
    }

    .l-card {
        padding: 20px;
    }

    .w-400 {
        width: 100%;
    }

    .login-bg {
        background:
            linear-gradient(145deg, rgba(8, 33, 72, 0.55), rgba(20, 107, 216, 0.25)),
            radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.2), transparent 35%),
            radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.15), transparent 30%),
            linear-gradient(130deg, #102f5f, #1f5ca5);
    }
}

@media (max-width: 991.98px) {
    body.has-app-sidebar {
        padding-left: 0;
    }

    .app-sidebar {
        transform: translateX(-105%);
        transition: transform 0.2s ease;
    }

    body.app-sidebar-open .app-sidebar {
        transform: translateX(0);
    }

    body.app-sidebar-open .app-sidebar-backdrop {
        display: block;
    }
}

/* Summary Card Gradient Styles */
.summary-card {
    border-radius: 10px;
    padding: 16px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-card-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.summary-card-green {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.summary-card-orange {
    background: linear-gradient(135deg, #ffe0b2, #ffcc80);
    color: #e65100;
}

.summary-card-purple {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #6a1b9a;
}

    /* =============================================
       APP LAYOUT: Content wrapper + Topbar
       ============================================= */

    .app-content-wrap {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .app-topbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
        border-bottom: 1px solid var(--app-border);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 24px;
        gap: 16px;
        flex-shrink: 0;
    }

    .app-page-title {
        margin: 0;
        font-size: 17px;
        font-weight: 700;
        color: #0a1f44;
        font-family: 'Sora', sans-serif;
    }

    .app-topbar-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-topbar-user {
        border: 1px solid var(--app-border) !important;
        background: var(--app-surface-muted) !important;
        color: var(--app-text) !important;
        padding: 6px 14px;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: none !important;
    }

    .btn-topbar-user:hover {
        background: #eaecf0 !important;
    }

    .app-main-content {
        flex: 1;
        padding: 24px;
    }

    @media (max-width: 991.98px) {
        .app-topbar {
            padding: 10px 16px 10px 56px;
        }
        .app-main-content {
            padding: 16px;
        }
    }

    /* =============================================
       ACTION CELL (Events table)
       ============================================= */

    .action-cell {
        white-space: nowrap;
        vertical-align: middle;
    }

    .action-cell .action-icon,
    .action-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.65rem;
        height: 1.65rem;
        padding: 0;
        margin-right: 0.15rem;
        line-height: 1;
    }

    .action-cell .action-icon i,
    .action-icon i {
        font-size: 0.68rem;
    }

    /* =============================================
       DASHBOARD: Webinar cards & stat numbers
       ============================================= */

    .webinar-card {
        border-left: 4px solid #007bff;
        margin-bottom: 1rem;
    }

    .webinar-card.active {
        border-left-color: #28a745;
    }

    .webinar-card.upcoming {
        border-left-color: #ffc107;
    }

    .webinar-card.expired {
        border-left-color: #dc3545;
    }

    .status-badge {
        padding: 0.35rem 0.85rem;
        border-radius: 0.35rem;
        font-weight: 600;
        font-size: 0.8rem;
        display: inline-block;
    }

    .status-active {
        background-color: #d4edda;
        color: #155724;
    }

    .status-upcoming {
        background-color: #fff3cd;
        color: #856404;
    }

    .status-expired {
        background-color: #f8d7da;
        color: #721c24;
    }

    .stat-number {
        font-size: 2.4rem;
        font-weight: 700;
        color: #0f6ddf;
        line-height: 1;
    }

    .stat-number.warning { color: #e08a00; }
    .stat-number.danger  { color: #c82333; }
    .stat-number.muted   { color: #495057; }

    .stat-label {
        color: #6c757d;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 4px;
    }

    .date-range-badge {
        background-color: #f0f2f5;
        color: #383d41;
        padding: 0.35rem 0.75rem;
        border-radius: 8px;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .webinar-id-label {
        background-color: #f8f9fa;
        padding: 0.35rem 0.65rem;
        border-radius: 8px;
        font-family: monospace;
        font-size: 0.85rem;
        color: #495057;
        margin-top: 4px;
        display: inline-block;
    }

    .empty-state {
        text-align: center;
        padding: 3rem 1rem;
        color: #6c757d;
    }

    .empty-state-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        opacity: 0.4;
    }

        /* Dashboard card hover lift */
        .dashboard-card {
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }
        .dashboard-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
        }

    /* =============================================
       REMOVE-BTN (Edit form)
       ============================================= */
    .remove-btn {
        cursor: pointer;
        color: #dc3545;
        font-weight: bold;
        float: right;
    }

    /* Manager activity + assignment utility styles */
    .log-entry {
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
        transition: background-color 0.2s ease;
    }
    .log-entry:hover {
        background-color: #f8f9fa;
    }
    .activity-type {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 0.25rem;
        font-size: 0.75rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
    .activity-type.view_details { background-color: #d4edda; color: #155724; }
    .activity-type.assign_webinar { background-color: #cfe2ff; color: #084298; }
    .activity-type.remove_webinar,
    .activity-type.unauthorized_access_attempt { background-color: #f8d7da; color: #721c24; }

    .timestamp {
        color: #6c757d;
        font-size: 0.875rem;
    }
    .ip-address {
        font-family: monospace;
        background-color: #f8f9fa;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-size: 0.875rem;
    }

    .badge-success { background-color: #198754; color: #fff; }
    .badge-warning { background-color: #ffc107; color: #000; }
    .badge-danger { background-color: #dc3545; color: #fff; }
    .badge-secondary { background-color: #6c757d; color: #fff; }

    .table-actions {
        display: flex;
        gap: 5px;
    }
    .table-actions .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }

    /* Manager webinar details page */
    .webinar-details-page .tabs-clean {
        border: none;
    }

    .webinar-details-page .nav-tabs .nav-link {
        color: #6c757d;
        border: none;
        border-bottom: 2px solid transparent;
    }

    .webinar-details-page .nav-tabs .nav-link.active {
        border-bottom: 2px solid #007bff;
        color: #007bff;
    }

    .webinar-details-page .stat-box {
        background-color: #f8f9fa;
        padding: 1.5rem;
        border-radius: 0.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .webinar-details-page .stat-number {
        font-size: 2rem;
        font-weight: bold;
        color: #007bff;
    }

    .webinar-details-page .stat-label {
        color: #6c757d;
        font-size: 0.875rem;
        text-transform: uppercase;
        margin-top: 0.5rem;
    }

    .webinar-details-page .access-badge {
        background-color: #d4edda;
        color: #155724;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        font-weight: 500;
    }

    .webinar-details-page .summary-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        padding: 18px;
        color: #1a1a1a;
    }

    .webinar-details-page .summary-card-blue {
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    }

    .webinar-details-page .summary-card-green {
        background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    }

    .webinar-details-page .summary-card-orange {
        background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    }

    .webinar-details-page .summary-card-purple {
        background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    }

    .webinar-details-page .summary-card .stat-number,
    .webinar-details-page .summary-card .stat-label {
        color: #1a1a1a;
    }

    .webinar-details-page .summary-card .stat-label {
        text-transform: uppercase;
        font-size: 0.84rem;
        letter-spacing: 0.2px;
    }

    .webinar-details-page .summary-card .stat-number {
        font-size: 1.95rem;
        font-weight: 700;
    }

    .webinar-details-page .search-input-sm {
        width: 220px;
    }

    .webinar-details-page .select-min-110 {
        min-width: 110px;
    }

    .webinar-details-page .progress-12 {
        height: 12px;
    }

    .webinar-details-page .small-unit {
        font-size: 1rem;
    }

    .webinar-details-page .field-col {
        width: 35%;
    }

    .webinar-details-page .overview-key-col {
        width: 30%;
    }

    /* Event details page footer and CTA spacing */
    body.business_forum .event-details-cta {
        margin-bottom: 64px;
    }

    body.business_forum .footer,
    body.business_forum .footer p,
    body.business_forum .footer a {
        color: #c9c9c9;
    }

    body.business_forum .footer a:hover,
    body.business_forum .footer a:focus {
        color: #d9d9d9;
    }

/* =============================================
   2026 Dashboard Reskin (visual only)
   ============================================= */

body.has-app-sidebar {
    background: linear-gradient(180deg, #f4f7fc 0%, #eef3fb 100%);
    color: #1e293b;
    padding-top: 84px;
}

body.has-app-sidebar .container,
body.has-app-sidebar .container-fluid {
    max-width: 1400px;
}

body.has-app-sidebar .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
}

body.has-app-sidebar .title {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 6px;
}

.app-sidebar {
    width: 252px;
    background: #ffffff;
    border-right: 1px solid #dbe4f1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    padding: 20px 14px;
}

.app-sidebar-brand .logo {
    height: 34px;
}

.app-sidebar-link {
    color: #1e3a8a;
    border-radius: 999px;
    border-left: 0;
    min-height: 42px;
    padding: 10px 14px;
}

.app-sidebar-link i {
    color: #1e3a8a;
    opacity: 0.9;
}

.app-sidebar-link:hover {
    background: #eff6ff;
    color: #1d4ed8;
    text-decoration: none;
}

.app-sidebar-link.active {
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.app-sidebar-link.active i {
    color: #1d4ed8;
}

.app-sidebar-footer .btn-primary {
    background: #3b82f6 !important;
    border: 1px solid #bfdbfe !important;
    box-shadow: none;
}

.app-topbar {
    position: fixed;
    left: 252px;
    right: 0;
    top: 0;
    z-index: 1030;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #dbe4f1;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(6px);
}

.app-page-title {
    font-size: 1.08rem;
    color: #0f172a;
    font-weight: 700;
}

.app-topbar-left,
.app-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-topbar-search {
    width: 280px;
    background: #f8fbff;
    border: 1px solid #d8e3f2;
    border-radius: 999px;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

.app-topbar-search i {
    color: #64748b;
}

.app-topbar-search .form-control {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-height: 32px;
    padding: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.app-topbar-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border: 1px solid #dbe4f1;
    border-radius: 999px;
    background: #ffffff;
}

.app-topbar-avatar {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e2ecfb;
    color: #1d4ed8;
}

.app-topbar-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}

.app-topbar-meta strong {
    color: #0f172a;
    font-size: 0.79rem;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-topbar-meta small {
    color: #64748b;
    text-transform: capitalize;
    font-size: 0.72rem;
}

body.has-app-sidebar .card,
body.has-app-sidebar .table,
body.has-app-sidebar form,
body.has-app-sidebar .alert,
body.has-app-sidebar .modal-content,
body.has-app-sidebar .email-content.tbl > table {
    border-radius: 12px;
    border: 1px solid #dbe4f1 !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

body.has-app-sidebar .card-header {
    background: #f8fbff !important;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px 12px 0 0 !important;
}

body.has-app-sidebar .summary-card,
body.has-app-sidebar .dashboard-card {
    border-radius: 12px;
    border: 1px solid #dbe4f1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

body.has-app-sidebar .summary-card {
    position: relative;
    overflow: hidden;
    padding: 18px 18px 18px 20px;
}

body.has-app-sidebar .summary-card::after {
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    right: -16px;
    top: -14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.38);
}

body.has-app-sidebar .summary-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

body.has-app-sidebar .stat-number {
    font-size: 2.1rem;
    font-weight: 700;
}

body.has-app-sidebar .table {
    background: #fff;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

body.has-app-sidebar .table > :not(caption) > * > * {
    padding: 12px 14px;
    border-bottom: 1px solid #edf2f8;
    vertical-align: middle;
}

body.has-app-sidebar .table thead th,
body.has-app-sidebar th {
    background: #eef5ff !important;
    color: #1e3a8a !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.04em;
    font-weight: 700;
    border-bottom: 1px solid #dbe4f1 !important;
}

body.has-app-sidebar .table tbody tr {
    transition: background-color 0.2s ease;
}

body.has-app-sidebar .table tbody tr:hover {
    background: #f8fbff;
}

body.has-app-sidebar .badge,
body.has-app-sidebar .status-badge,
body.has-app-sidebar .activity-type,
body.has-app-sidebar .access-status {
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 6px 10px;
}

body.has-app-sidebar .status-active,
body.has-app-sidebar .badge-success {
    background: #dcfce7 !important;
    color: #166534 !important;
}

body.has-app-sidebar .status-upcoming,
body.has-app-sidebar .badge-warning {
    background: #fef3c7 !important;
    color: #92400e !important;
}

body.has-app-sidebar .status-expired,
body.has-app-sidebar .badge-danger {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

body.has-app-sidebar .badge-secondary {
    background: #e2e8f0 !important;
    color: #334155 !important;
}

body.has-app-sidebar .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.46rem 0.88rem;
}

body.has-app-sidebar .btn-primary {
    background: #2563eb !important;
    border-color: #2563eb !important;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

body.has-app-sidebar .btn-primary:hover,
body.has-app-sidebar .btn-primary:focus {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
}

body.has-app-sidebar .btn-secondary,
body.has-app-sidebar .btn-outline-primary,
body.has-app-sidebar .btn-light {
    background: #f8fbff !important;
    border: 1px solid #dbe4f1 !important;
    color: #1e3a8a !important;
    box-shadow: none !important;
}

body.has-app-sidebar .input-group,
body.has-app-sidebar .search-filter-card {
    background: #ffffff;
    border: 1px solid #dbe4f1;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

body.has-app-sidebar form.input-group {
    width: 100% !important;
    max-width: 660px;
}

body.has-app-sidebar form.input-group .form-control[name="search"] {
    border: 1px solid #dbe4f1 !important;
    border-radius: 999px !important;
}

body.has-app-sidebar form.input-group .form-select {
    border-radius: 999px !important;
    min-height: 40px;
}

body.has-app-sidebar form.input-group .input-group-text,
body.has-app-sidebar form.input-group button {
    border-radius: 999px !important;
    background: #eff6ff !important;
    border: 1px solid #dbe4f1 !important;
    color: #1d4ed8;
    min-width: 42px;
}

body.has-app-sidebar .pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid #dbe4f1;
    color: #1e3a8a;
}

body.has-app-sidebar .pagination .page-item.active .page-link {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

body.has-app-sidebar .alert {
    border-radius: 12px;
    border-width: 1px;
}

@media (max-width: 991.98px) {
    body.has-app-sidebar {
        padding-top: 76px;
    }

    .app-topbar {
        left: 0;
        padding: 12px 12px 12px 56px;
    }

    .app-topbar-search {
        width: 172px;
    }

    .app-topbar-meta {
        display: none;
    }
}
