    .home-page {
        padding: 1.5rem;
    }

    .home-page:has(.welcome-hero) {
        padding: 0;
    }

    .clickable-row {
        cursor: pointer;
    }

    .clickable-row:hover {
        background: var(--bg-light, #f8f9fa);
    }

    .recent-transactions-section {
        margin-top: 2rem;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .section-header h2 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .btn-sm {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }

    .welcome-hero {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: calc(100vh - 140px) !important;
        width: 100% !important;
        padding: 2rem;
        box-sizing: border-box;
    }

    .welcome-card {
        text-align: center;
        background: var(--bg-surface);
        border-radius: 16px;
        padding: 3rem 4rem;
        box-shadow: var(--shadow-lg);
        max-width: 420px;
        width: 100%;
    }

    .welcome-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .welcome-card h1 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-heading);
        margin: 0 0 0.75rem 0;
    }

    .welcome-subtitle {
        color: var(--text-muted);
        font-size: 1rem;
        margin: 0 0 2rem 0;
        line-height: 1.5;
    }

    .btn-outlook-large {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 14px 32px;
        background-color: var(--bg-surface);
        border: 2px solid var(--border-lightest);
        border-radius: 10px;
        color: var(--text-heading);
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
        width: 100%;
    }

    .btn-outlook-large:hover {
        background-color: var(--bg-surface-elevated);
        border-color: var(--color-primary);
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
    }

    .btn-outlook-large svg {
        flex-shrink: 0;
    }
