/* ===================================================
 WoodbridgePortal - SITE CSS
   ASP.NET MVC Core Compatible Stylesheet
   =================================================== */

/* ===================================================
   FONTS - Google Fonts CDN
   Download for local use: https://github.com/rsms/inter/releases
   To use local fonts, replace @import with @font-face declarations
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ----- CSS Variables ----- */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    /* Solid Colors */
    --primary-color: #667eea;
    --primary-dark: #764ba2;
    --accent-color: #f5576c;
    --accent-light: #f093fb;
    /* Neutrals */
    --text-dark: #1a1a2e;
    --text-muted: #4a5568;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 10px 30px rgba(245, 87, 108, 0.4);
    --shadow-primary: 0 10px 30px rgba(102, 126, 234, 0.4);
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----- Base Styles ----- */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
    margin-bottom: 60px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ----- Focus States ----- */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

/* ----- Form Floating Labels ----- */
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ===================================================
   NAVBAR STYLES
   =================================================== */
.navbar {
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color) !important;
    transition: var(--transition-normal);
}

    .navbar-brand i {
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-right: 0.5rem;
    }

    .navbar-brand:hover {
        transform: translateX(3px);
    }

.nav-link {
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
    padding: 0.5rem 1rem !important;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-gradient);
        transition: var(--transition-normal);
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80%;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

/* Dropdown Enhancements */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    transition: var(--transition-fast);
}

    .dropdown-item:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

/* Notification Badge */
#notificationBadge {
    font-size: 0.65rem;
    padding: 0.25em 0.5em;
    position: relative;
    top: -8px;
    left: -5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===================================================
   BUTTON STYLES
   =================================================== */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: var(--shadow-primary);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
        background: var(--primary-gradient);
    }

.btn-accent {
    background: var(--accent-gradient);
    border: none;
    color: white;
    box-shadow: var(--shadow-accent);
}

    .btn-accent:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(245, 87, 108, 0.5);
        color: white;
    }

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        transform: translateY(-2px);
    }

.btn-outline-secondary {
    border: 2px solid var(--border-color);
    color: var(--text-muted);
}

    .btn-outline-secondary:hover {
        background: var(--bg-light);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

/* ===================================================
   CARD STYLES
   =================================================== */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
}

    .card:hover {
        box-shadow: var(--shadow-md);
    }

.card-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-weight: 600;
    color: var(--text-dark);
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

    .feature-card .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.75rem;
        background: var(--primary-gradient);
        color: white;
        transition: var(--transition-smooth);
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .feature-card .feature-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }

    .feature-card .feature-text {
        color: var(--text-muted);
        font-size: 0.95rem;
    }

/* Stats Card */
.stats-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

    .stats-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .stats-card .stats-icon {
        width: 50px;
        height: 50px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

        .stats-card .stats-icon.primary {
            background: rgba(102, 126, 234, 0.1);
            color: var(--primary-color);
        }

        .stats-card .stats-icon.accent {
            background: rgba(245, 87, 108, 0.1);
            color: var(--accent-color);
        }

        .stats-card .stats-icon.success {
            background: rgba(72, 187, 120, 0.1);
            color: #48bb78;
        }

        .stats-card .stats-icon.warning {
            background: rgba(237, 137, 54, 0.1);
            color: #ed8936;
        }

        .stats-card .stats-icon.danger {
            background: rgba(245, 87, 108, 0.1);
            color: #f5576c;
        }

        .stats-card .stats-icon.info {
            background: rgba(66, 153, 225, 0.1);
            color: #4299e1;
        }

    .stats-card .stats-number {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1;
    }

    .stats-card .stats-label {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

/* ===================================================
   TABLE STYLES
   =================================================== */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

    .table thead th {
        background: var(--bg-light);
        border-bottom: 2px solid var(--border-color);
        font-weight: 600;
        color: var(--text-dark);
        padding: 1rem;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .table tbody tr {
        transition: var(--transition-fast);
    }

        .table tbody tr:hover {
            background: var(--bg-light);
        }

    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-bottom: 1px solid var(--border-color);
    }

/* Table inside card */
.card .table {
    margin-bottom: 0;
}

    .card .table thead th:first-child {
        border-top-left-radius: 0;
    }

    .card .table thead th:last-child {
        border-top-right-radius: 0;
    }

/* ===================================================
   FORM STYLES
   =================================================== */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
    transition: var(--transition-normal);
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
    transition: var(--transition-normal);
}

    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Input Group with Icon */
.input-group-icon {
    position: relative;
}

    .input-group-icon .form-control {
        padding-left: 2.75rem;
    }

    .input-group-icon .input-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        z-index: 10;
    }

/* ===================================================
   BADGE STYLES
   =================================================== */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
    border-radius: var(--radius-full);
}

.badge-primary {
    background: var(--primary-gradient);
    color: white;
}

.badge-accent {
    background: var(--accent-gradient);
    color: white;
}

.badge-soft-primary {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.badge-soft-success {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
}

.badge-soft-warning {
    background: rgba(237, 137, 54, 0.1);
    color: #c05621;
}

.badge-soft-danger {
    background: rgba(245, 87, 108, 0.1);
    color: #c53030;
}

.badge-soft-info {
    background: rgba(66, 153, 225, 0.1);
    color: #2b6cb0;
}

/* ===================================================
   ALERT STYLES
   =================================================== */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .alert i {
        font-size: 1.25rem;
    }

.alert-success {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border-left: 4px solid #48bb78;
}

.alert-danger {
    background: rgba(245, 87, 108, 0.1);
    color: #c53030;
    border-left: 4px solid #f5576c;
}

.alert-warning {
    background: rgba(237, 137, 54, 0.1);
    color: #c05621;
    border-left: 4px solid #ed8936;
}

.alert-info {
    background: rgba(66, 153, 225, 0.1);
    color: #2b6cb0;
    border-left: 4px solid #4299e1;
}

/* ===================================================
   MODAL STYLES
   =================================================== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

/* ===================================================
   PAGE HEADER STYLES
   =================================================== */
.page-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

    .page-header h1,
    .page-header h2 {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
    }

    .page-header .breadcrumb {
        margin-bottom: 0;
        background: none;
        padding: 0;
    }

    .page-header .breadcrumb-item a {
        color: var(--primary-color);
        text-decoration: none;
    }

        .page-header .breadcrumb-item a:hover {
            text-decoration: underline;
        }

/* ===================================================
   DASHBOARD STYLES
   =================================================== */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

    .dashboard-header h1,
    .dashboard-header h2 {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0;
    }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

/* ===================================================
   LIST GROUP STYLES
   =================================================== */
.list-group-item {
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    transition: var(--transition-fast);
}

    .list-group-item:first-child {
        border-top-left-radius: var(--radius-md);
        border-top-right-radius: var(--radius-md);
    }

    .list-group-item:last-child {
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
    }

    .list-group-item:hover {
        background: var(--bg-light);
    }

    .list-group-item.active {
        background: var(--primary-gradient);
        border-color: transparent;
    }

/* ===================================================
   PAGINATION STYLES
   =================================================== */
.pagination {
    gap: 0.25rem;
}

.page-link {
    border: none;
    border-radius: var(--radius-sm) !important;
    padding: 0.5rem 0.875rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

    .page-link:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

.page-item.active .page-link {
    background: var(--primary-gradient);
    color: white;
}

.page-item.disabled .page-link {
    background: transparent;
    color: var(--text-light);
}

/* ===================================================
   FOOTER STYLES
   =================================================== */
.footer {
    background: var(--bg-light);
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

    .footer a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition-fast);
    }

        .footer a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

/* ===================================================
   EMPTY STATE
   =================================================== */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

    .empty-state .empty-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.5;
        color: var(--primary-color);
    }

    .empty-state h3 {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .empty-state p {
        margin-bottom: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

/* ===================================================
   LOADING STATES
   =================================================== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 0.8s linear infinite;
}

    .loading-spinner.lg {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================================
   UTILITY CLASSES
   =================================================== */

/* Text Gradients */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Gradients */
.bg-gradient-primary {
    background: var(--primary-gradient);
}

.bg-gradient-accent {
    background: var(--accent-gradient);
}

.bg-gradient-dark {
    background: var(--dark-gradient);
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

/* Border Radius */
.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition-smooth);
}

    .hover-lift:hover {
        transform: translateY(-5px);
    }

.hover-shadow {
    transition: var(--transition-smooth);
}

    .hover-shadow:hover {
        box-shadow: var(--shadow-lg);
    }

/* ===================================================
   HOME PAGE STYLES
   =================================================== */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

    .home-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.home-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.home-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.home-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

    .home-feature-card:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .home-feature-card .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .home-feature-card .title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .home-feature-card .text {
        font-size: 0.95rem;
        opacity: 0.9;
    }

.home-login-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-accent);
    animation: bounceIn 0.8s ease-out 0.6s both;
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.home-login-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.6);
    color: white;
    text-decoration: none;
}

.home-login-btn:active {
    transform: translateY(-2px);
}

.home-privacy-link {
    margin-top: 2rem;
}

    .home-privacy-link a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        transition: var(--transition-fast);
    }

        .home-privacy-link a:hover {
            color: white;
            border-bottom-color: white;
        }

/* Hide layout elements on home page */
.home-page .navbar,
.home-page .footer,
.home-page > .container {
    display: none !important;
}

.home-page {
    margin-bottom: 0 !important;
}

/* ===================================================
   RESPONSIVE ADJUSTMENTS
   =================================================== */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        flex-direction: column;
        text-align: center;
    }

    .home-features {
        grid-template-columns: 1fr;
    }

    .home-logo {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .page-header h1,
    .page-header h2 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
    }
}

/* ===================================================
   PRINT STYLES
   =================================================== */
@media print {
    .navbar,
    .footer,
    .btn,
    .no-print {
        display: none !important;
    }

    body {
        margin: 0;
        padding: 0;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
